mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
Create Laravel plugin README
This commit is contained in:
parent
729339c780
commit
c2113d7cc6
1 changed files with 39 additions and 0 deletions
39
plugins/laravel/README.md
Normal file
39
plugins/laravel/README.md
Normal file
|
@ -0,0 +1,39 @@
|
|||
# Laravel
|
||||
|
||||
Enable some cool aliases for Laravel [artisan console](https://laravel.com/docs/5.7/artisan). To use it, add `laravel` to the plugins array of your zshrc file:
|
||||
```
|
||||
plugins=(... laravel)
|
||||
```
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| `artisan` | `php artisan` |
|
||||
| `pas` | `php artisan serve` |
|
||||
|
||||
## Database
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| `pam` | `php artisan migrate` |
|
||||
| `pamf` | `php artisan migrate:fresh` |
|
||||
| `pamfs` | `php artisan migrate:fresh --seed` |
|
||||
| `pamr` | `php artisan migrate:rollback` |
|
||||
| `pads` | `php artisan db:seed` |
|
||||
|
||||
## Makers
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| `pamm` | `php artisan make:model` |
|
||||
| `pamc` | `php artisan make:controller` |
|
||||
| `pams` | `php artisan make:seeder` |
|
||||
| `pamt` | `php artisan make:test` |
|
||||
|
||||
## Clears
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| `pacac` | `php artisan cache:clear` |
|
||||
| `pacoc` | `php artisan config:clear` |
|
||||
| `pavic` | `php artisan view:clear` |
|
||||
| `paroc` | `php artisan route:clear` |
|
Loading…
Reference in a new issue