Compare commits

...

3 Commits

Author SHA1 Message Date
Ali Raghebi b16ea0ea31
Merge f891e89166 into 6e7ac0544e 2025-02-20 06:29:02 +01:00
Ali Raghebi f891e89166
add pat alias 2025-01-27 10:53:13 +03:30
Ali Raghebi c258d0739f
feat: add `pat` to readme 2024-12-15 12:11:47 +03:30
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ plugins=(... laravel)
|:-:|:-:| |:-:|:-:|
| `artisan` | `php artisan` | | `artisan` | `php artisan` |
| `pas` | `php artisan serve` | | `pas` | `php artisan serve` |
| `pat` | `php artisan tink` |
| `pats` | `php artisan test` | | `pats` | `php artisan test` |
## Database ## Database

View File

@ -5,6 +5,7 @@ alias bob='php artisan bob::build'
# Development # Development
alias pas='php artisan serve' alias pas='php artisan serve'
alias pats='php artisan test' alias pats='php artisan test'
alias pat='php artisan tink'
# Database # Database
alias pam='php artisan migrate' alias pam='php artisan migrate'