@extends('layouts.user') @section('title', 'Developer Settings') @section('content')

Developer Settings

Execute system commands and maintenance tasks

@if(session('success'))
{{ session('success') }}
@if(session('output'))
{{ session('output') }}
@endif
@endif @if(session('error'))
{{ session('error') }}
@endif

Auto-Complete Overdue Jobs

Automatically complete jobs that have exceeded their scheduled end time

@csrf
php artisan jobs:auto-complete-overdue

Update Schedule Statuses

Update schedule statuses based on current date/time

@csrf
php artisan app:update-schedule-statuses

Clear Application Cache

Clear all cached data to refresh the application

@csrf
php artisan cache:clear

Clear Config Cache

Clear configuration cache to reload settings

@csrf
php artisan config:clear

Clear Route Cache

Clear route cache to reload routing definitions

@csrf
php artisan route:clear

Clear View Cache

Clear compiled view files to refresh templates

@csrf
php artisan view:clear

Developer Access Only

These commands should only be executed by authorized developers. Use with caution as they can affect system performance and data.

@endsection