-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
Cache Management
Clear Application Cache
Clears route, config, and view cache. Equivalent
to php artisan optimize:clear.
System Build
Build Frontend Assets
Runs npm run build to compile assets.
Use this after UI changes.
Database Management
Migrate Database
Run pending migrations to update database schema.
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.
Database Seeding
Run All Seeders
Execute the DatabaseSeeder class to
populate the database with default data.
Run Specific Seeder
Select and execute a specific seeder class.