Update laravel.plugin.zsh

Added two new aliases
- `pat` runs tinker which is used a lot during development to interact with the app through the terminal
- `paoc' clears all the cache at once which saves the time that it would take to clear each cache individually.
This commit is contained in:
Eugene Owak 2022-03-24 16:26:53 +03:00 committed by GitHub
parent 4dce175e0e
commit e0a532e5d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,7 @@ alias bob='php artisan bob::build'
# Development
alias pas='php artisan serve'
alias pat='php artisan tinker'
# Database
alias pam='php artisan migrate'
@ -31,6 +32,7 @@ alias pacac='php artisan cache:clear'
alias pacoc='php artisan config:clear'
alias pavic='php artisan view:clear'
alias paroc='php artisan route:clear'
alias paoc='php artisan optimize:clear'
# queues
alias paqf='php artisan queue:failed'