@extends('dashbord.layouts.master') @section('toolbar')

High Settings

@endsection @section('content')
@if(session('success')) @endif @if(session('error')) @endif

Clear Cache

Clear all Laravel cache types

This action will clear all Laravel cache types including application cache, configuration cache, route cache, and view cache. This helps resolve caching issues and ensures your changes are reflected immediately.
@if(isset($cache_results))
Cache Clear Results
@foreach($cache_results as $result)
{{ $result['command'] }}: {{ $result['output'] }}
@endforeach
@endif

Run Migrations

Execute pending database migrations

This action will run all pending database migrations. This updates your database schema to match the current migrations. Use this after adding new migration files or when database structure changes are needed.
@if(isset($migration_results))
Migration Results
@foreach($migration_results as $result)
{{ $result['command'] }}: {{ $result['output'] }}
@endforeach
@endif

Git Configuration

Configure Git user settings

@csrf
@if(isset($git_config_results))
Git Configuration Results
@foreach($git_config_results as $result)
{{ $result['command'] }}: {{ $result['output'] }}
@endforeach
@endif

GitHub Actions

Pull and push to GitHub

@if($gitStatus['is_repo'] ?? false)
Add or update the origin remote for this repository.
@if(isset($git_pull_results))
Pull Results
@foreach($git_pull_results as $result)
{{ $result['command'] }}: {{ $result['output'] }}
@endforeach
@endif @if(isset($git_push_results))
Push Results
@foreach($git_push_results as $result)
{{ $result['command'] }}: {{ $result['output'] }}
@endforeach
@endif @else
Enter a remote URL before adding origin after initialization.
@endif

Environment Configuration

Change application environment settings

Changing environment will clear configuration cache and restart the application.

Debug Mode

Toggle application debug mode

Current status: {{ config('app.debug') ? 'Enabled' : 'Disabled' }}

System Information

Current Laravel environment details

Laravel Version {{ app()->version() }}
Environment {{ config('app.env') }}
Debug Mode {{ config('app.debug') ? 'Enabled' : 'Disabled' }}
Cache Driver {{ config('cache.default') }}
Database Connection {{ config('database.default') }}
Queue Connection {{ config('queue.default') }}
@endsection @section('js') @endsection