Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laravel plugin artisan command additions #8384

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions plugins/laravel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ plugins=(... laravel)
|:-:|:-:|
| `artisan` | `php artisan` |
| `pas` | `php artisan serve` |
| `pati` | `php artisan tinker` |

## Database

Expand Down Expand Up @@ -38,3 +39,12 @@ plugins=(... laravel)
| `pacoc` | `php artisan config:clear` |
| `pavic` | `php artisan view:clear` |
| `paroc` | `php artisan route:clear` |

## Misc

| Alias | Description |
|:-:|:-:|
| `pak` | `php artisan key:generate` |
| `pasl` | `php artisan storage:link` |
| `pav` | `php artisan vendor:publish` |

6 changes: 6 additions & 0 deletions plugins/laravel/laravel.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ alias bob='php artisan bob::build'

# Development
alias pas='php artisan serve'
alias pati='php artisan tinker'

# Database
alias pam='php artisan migrate'
Expand All @@ -24,3 +25,8 @@ alias pacac='php artisan cache:clear'
alias pacoc='php artisan config:clear'
alias pavic='php artisan view:clear'
alias paroc='php artisan route:clear'

# Misc
alias pak='php artisan key:generate'
alias pasl='php artisan storage:link'
alias pav='php artisan vendor:publish'