mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Updated plugin shortcuts
This commit is contained in:
parent
beeda72826
commit
56b924d526
2 changed files with 55 additions and 37 deletions
|
@ -7,14 +7,20 @@ plugins=(... laravel)
|
|||
```
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| :-------: | :-----------------: |
|
||||
| `artisan` | `php artisan` |
|
||||
| `pas` | `php artisan serve` |
|
||||
|
||||
## Key
|
||||
|
||||
| Alias | Description |
|
||||
| :----: | :------------------------: |
|
||||
| `pakg` | `php artisan key:generate` |
|
||||
|
||||
## Database
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| :-----: | :--------------------------------: |
|
||||
| `pam` | `php artisan migrate` |
|
||||
| `pamf` | `php artisan migrate:fresh` |
|
||||
| `pamfs` | `php artisan migrate:fresh --seed` |
|
||||
|
@ -24,7 +30,7 @@ plugins=(... laravel)
|
|||
## Makers
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| :-----: | :-----------------------------: |
|
||||
| `pamm` | `php artisan make:model` |
|
||||
| `pamc` | `php artisan make:controller` |
|
||||
| `pams` | `php artisan make:seeder` |
|
||||
|
@ -39,7 +45,7 @@ plugins=(... laravel)
|
|||
## Clears
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| :-----: | :------------------------: |
|
||||
| `pacac` | `php artisan cache:clear` |
|
||||
| `pacoc` | `php artisan config:clear` |
|
||||
| `pavic` | `php artisan view:clear` |
|
||||
|
@ -48,10 +54,16 @@ plugins=(... laravel)
|
|||
## Queues
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| :-----: | :------------------------------: |
|
||||
| `paqf` | `php artisan queue:failed` |
|
||||
| `paqft` | `php artisan queue:failed-table` |
|
||||
| `paql` | `php artisan queue:listen` |
|
||||
| `paqr` | `php artisan queue:retry` |
|
||||
| `paqt` | `php artisan queue:table` |
|
||||
| `paqw` | `php artisan queue:work` |
|
||||
|
||||
## Storage
|
||||
|
||||
| Alias | Description |
|
||||
| :----: | :------------------------: |
|
||||
| `pasl` | `php artisan storage:link` |
|
||||
|
|
|
@ -5,6 +5,9 @@ alias bob='php artisan bob::build'
|
|||
# Development
|
||||
alias pas='php artisan serve'
|
||||
|
||||
# Key
|
||||
alias pakg='php artisan key:generate'
|
||||
|
||||
# Database
|
||||
alias pam='php artisan migrate'
|
||||
alias pamf='php artisan migrate:fresh'
|
||||
|
@ -39,3 +42,6 @@ alias paql='php artisan queue:listen'
|
|||
alias paqr='php artisan queue:retry'
|
||||
alias paqt='php artisan queue:table'
|
||||
alias paqw='php artisan queue:work'
|
||||
|
||||
# Storage
|
||||
alias pasl='php artisan storage:link'
|
||||
|
|
Loading…
Reference in a new issue