1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-30 09:40:09 +00:00
ohmyzsh/plugins/laravel-art/README.md

28 lines
1.3 KiB
Markdown
Raw Normal View History

2022-03-07 15:17:59 +00:00
# Laravel Art plugin
This plugin adds some aliases for common [Laravel](https://laravel.com/docs/) commands.
To use it, add `laravel-art` to the plugins array in your zshrc file:
```zsh
plugins=(... laravel-art)
```
## Aliases
| Alias | Command | Description |
|-----------|--------------------------------------|-------------------------------------|
| art | `php artisan` | Main Artisan command |
| arts | `php artisan serve` | Serve the application |
2022-03-07 15:22:51 +00:00
| arto | `php artisan optimize` | Cache the framework bootstrap files |
2022-03-07 15:17:59 +00:00
| artr | `php artisan route:list` | List all registered routes |
| artm | `php artisan migrate` | Run the database migrations |
| artmf | `php artisan migrate:fresh` | Drop all tables and re-run all migrations |
| artmfseed | `php artisan migrate:fresh --seed` | Drop tables and re-run migrations then seed|
| artdbseed | `php artisan db:seed` | Seed the database with records |
| artmodseed| `php artisan module:seed` | Seed the database from module package|
| artcache | `php artisan cache:clear` | Flush the application cache |
## And Many Other Aliases