This commit is contained in:
Eugene Owak 2024-03-29 15:41:56 -03:00 committed by GitHub
commit d848a06834
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -10,6 +10,7 @@ plugins=(... laravel)
|:-:|:-:|
| `artisan` | `php artisan` |
| `pas` | `php artisan serve` |
| `pat` | `php artisan tinker` |
## Database
@ -44,6 +45,7 @@ plugins=(... laravel)
| `pacoc` | `php artisan config:clear` |
| `pavic` | `php artisan view:clear` |
| `paroc` | `php artisan route:clear` |
| `paoc` | `php artisan optimize:clear` |
## Queues

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'