mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
40 lines
1,004 B
Markdown
40 lines
1,004 B
Markdown
# Laravel
|
|
|
|
This plugin adds aliases and autocompletion for Laravel [Artisan](https://laravel.com/docs/artisan) and [Bob](http://daylerees.github.io/laravel-bob/) command-line interfaces.
|
|
|
|
```
|
|
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` |
|