This commit is contained in:
Refactorian
2023-09-26 20:23:56 +09:00
committed by GitHub
parent 0c09331734
commit 67c8e150fd
2 changed files with 25 additions and 0 deletions

View File

@@ -42,6 +42,30 @@
- Run a command inside a container
- `docker-compose exec [container] [command]`
### Useful Laravel Commands
- Remove the configuration cache file
- `php artisan config:clear`
- Flush the application cache
- `php artisan cache:clear`
- Clear all cached events and listeners
- `php artisan event:clear`
- Delete all of the jobs from the specified queue
- `php artisan queue:clear`
- Remove the route cache file
- `php artisan route:clear`
- Clear all compiled view files
- `php artisan view:clear`
- Remove the compiled class file
- `php artisan clear-compiled`
- Remove the cached bootstrap files
- `php artisan optimize:clear`
- Delete the cached mutex files created by scheduler
- `php artisan schedule:clear-cache`
- Flush expired password reset tokens
- `php artisan auth:clear-resets`
- Display basic information about your application
- `php artisan about`
### Laravel Pint (Code Style Fixer | PHP-CS-Fixer)
- Format all files
- `./vendor/bin/pint`