PHP Artisan command
Reset env
> php artisan view:clear
> php artisan route:clear
>php artisan route:cache
> php artisan optimize
> php artisan migrate:fresh --seed
Create view
> php artisan make:view about
Create Model
> php artisan make:Model Report -mc
Create controller
> php artisan make:controller UserController
> php artisan make:controller ReportResourceController --resource
Create request
> php artisan make:request StoreReportRequest
Create Seeder (dummy data)
> php artisan make:seeder ReportSeeder
> php artisan db:seed
Migrate database
> php artisan make:migration create_reports_table
> php artisan migrate
How to cache
> php artisan clear
> php artisan config:cache
> php artisan route:cache
> php artisan view:cache
Untuk deployment
Autoloader optimization
> composer install --optimize-autoloader --no-dev
Ulasan