@vite(['resources/css/app.css', 'resources/js/app.js']) @include('admin.partials.styles') @include('admin.partials.sidebar')

Developer Settings

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Cache Management

Clear Application Cache

Clears route, config, and view cache. Equivalent to php artisan optimize:clear.

@csrf

System Build

Build Frontend Assets

Runs npm run build to compile assets. Use this after UI changes.

@csrf

Database Management

Migrate Database

Run pending migrations to update database schema.

@csrf

Export Database

Download a SQL dump of the current database.

Execute

Import Database

Upload a SQL file to import into the database. Warning: This will overwrite existing data.

@csrf

Database Seeding

Run All Seeders

Execute the DatabaseSeeder class to populate the database with default data.

@csrf

Run Specific Seeder

Select and execute a specific seeder class.

@csrf