]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/laravel/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / laravel / README.md
1 # Laravel
2
3 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.
4
5 ```
6 plugins=(... laravel)
7 ```
8
9 | Alias | Description |
10 |:-:|:-:|
11 | `artisan`  | `php artisan`  |
12 | `pas`  | `php artisan serve` |
13
14 ## Database
15
16 | Alias | Description |
17 |:-:|:-:|
18 | `pam`  |  `php artisan migrate` |
19 | `pamf`  |  `php artisan migrate:fresh` |
20 | `pamfs`  |  `php artisan migrate:fresh --seed` |
21 | `pamr`  |  `php artisan migrate:rollback` |
22 | `pads`  |  `php artisan db:seed` |
23
24 ## Makers
25
26 | Alias | Description |
27 |:-:|:-:|
28 | `pamm`  |  `php artisan make:model` |
29 | `pamc`  |  `php artisan make:controller` |
30 | `pams`  |  `php artisan make:seeder` |
31 | `pamt`  |  `php artisan make:test` |
32 | `pamfa`  |  `php artisan make:factory` |
33 | `pamp`  |  `php artisan make:policy` |
34 | `pame`  |  `php artisan make:event` |
35 | `pamj`  |  `php artisan make:job` |
36 | `paml`  |  `php artisan make:listener` |
37 | `pamn`  |  `php artisan make:notification` |
38
39 ## Clears
40
41 | Alias | Description |
42 |:-:|:-:|
43 | `pacac`  |  `php artisan cache:clear` |
44 | `pacoc`  |  `php artisan config:clear` |
45 | `pavic`  |  `php artisan view:clear` |
46 | `paroc`  |  `php artisan route:clear` |
47
48 ## Queues
49
50 | Alias | Description |
51 |:-:|:-:|
52 | `paqf`  |  `php artisan queue:failed` |
53 | `paqft`  |  `php artisan queue:failed-table` |
54 | `paql`  |  `php artisan queue:listen` |
55 | `paqr`  |  `php artisan queue:retry` |
56 | `paqt`  |  `php artisan queue:table` |
57 | `paqw`  |  `php artisan queue:work` |