mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
Merge e625a2e348 into f1934d2c76
This commit is contained in:
commit
553d2c0a27
2 changed files with 71 additions and 0 deletions
|
|
@ -62,3 +62,42 @@ plugins=(... laravel)
|
|||
| `paqr` | `php artisan queue:retry` |
|
||||
| `paqt` | `php artisan queue:table` |
|
||||
| `paqw` | `php artisan queue:work` |
|
||||
|
||||
## Nwidart Modules
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| `pmmake` | `php artisan module:make` |
|
||||
| `pmlist` | `php artisan module:list` |
|
||||
| `pmmigrate` | `php artisan module:migrate` |
|
||||
| `pmrollback` | `php artisan module:migrate-rollback` |
|
||||
| `pmrefresh` | `php artisan module:migrate-refresh` |
|
||||
| `pmreset` | `php artisan module:migrate-reset` |
|
||||
| `pmseed` | `php artisan module:seed` |
|
||||
| `pmenable` | `php artisan module:enable` |
|
||||
| `pmdisable` | `php artisan module:disable` |
|
||||
|
||||
## Nwidart Module Generator Commands
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| `pmcommand` | `php artisan module:make-command` |
|
||||
| `pmmigration` | `php artisan module:make-migration` |
|
||||
| `pmseed` | `php artisan module:make-seed` |
|
||||
| `pmcontroller` | `php artisan module:make-controller` |
|
||||
| `pmmodel` | `php artisan module:make-model` |
|
||||
| `pmprovider` | `php artisan module:make-provider` |
|
||||
| `pmmiddleware` | `php artisan module:make-middleware` |
|
||||
| `pmmail` | `php artisan module:make-mail` |
|
||||
| `pmnotification` | `php artisan module:make-notification` |
|
||||
| `pmlistener` | `php artisan module:make-listener` |
|
||||
| `pmrequest` | `php artisan module:make-request` |
|
||||
| `pmevent` | `php artisan module:make-event` |
|
||||
| `pmjob` | `php artisan module:make-job` |
|
||||
| `pmrprovider` | `php artisan module:route-provider` |
|
||||
| `pmfactory` | `php artisan module:make-factory` |
|
||||
| `pmpolicy` | `php artisan module:make-policy` |
|
||||
| `pmrule` | `php artisan module:make-rule` |
|
||||
| `pmresource` | `php artisan module:make-resource` |
|
||||
| `pmtest` | `php artisan module:make-test` |
|
||||
|
||||
|
|
|
|||
|
|
@ -46,3 +46,35 @@ alias paql='php artisan queue:listen'
|
|||
alias paqr='php artisan queue:retry'
|
||||
alias paqt='php artisan queue:table'
|
||||
alias paqw='php artisan queue:work'
|
||||
|
||||
# Nwidart Modules
|
||||
alias pmmake='php artisan module:make'
|
||||
alias pmlist='php artisan module:list'
|
||||
alias pmmigrate='php artisan module:migrate'
|
||||
alias pmrollback='php artisan module:migrate-rollback'
|
||||
alias pmrefresh='php artisan module:migrate-refresh'
|
||||
alias pmreset='php artisan module:migrate-reset'
|
||||
alias pmseed='php artisan module:seed'
|
||||
alias pmenable='php artisan module:enable'
|
||||
alias pmdisable='php artisan module:disable'
|
||||
|
||||
# Nwidart Modules Generator Commands
|
||||
alias pmcommand='php artisan module:make-command'
|
||||
alias pmmigration='php artisan module:make-migration'
|
||||
alias pmseed='php artisan module:make-seed'
|
||||
alias pmcontroller='php artisan module:make-controller'
|
||||
alias pmmodel='php artisan module:make-model'
|
||||
alias pmprovider='php artisan module:make-provider'
|
||||
alias pmmiddleware='php artisan module:make-middleware'
|
||||
alias pmmail='php artisan module:make-mail'
|
||||
alias pmnotification='php artisan module:make-notification'
|
||||
alias pmlistener='php artisan module:make-listener'
|
||||
alias pmrequest='php artisan module:make-request'
|
||||
alias pmevent='php artisan module:make-event'
|
||||
alias pmjob='php artisan module:make-job'
|
||||
alias pmrprovider='php artisan module:route-provider'
|
||||
alias pmfactory='php artisan module:make-factory'
|
||||
alias pmpolicy='php artisan module:make-policy'
|
||||
alias pmrule='php artisan module:make-rule'
|
||||
alias pmresource='php artisan module:make-resource'
|
||||
alias pmtest='php artisan module:make-test'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue