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

Developer Settings

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@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

Run Database Seeder

Populate database with seed data.

@csrf

Export Database

Download a SQL dump of the current database.

Import Database

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

@endsection