Last active
December 15, 2016 06:06
-
-
Save lattespirit/6eba8229318693d47255e63b261b5397 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias m:c='php artisan make:controller' | |
alias m:middle='php artisan make:middleware' | |
alias m:migration='php artisan make:migration' | |
alias m:provider='php artisan make:provider' | |
alias m:listener='php artisan make:listener' | |
alias m:model='php artisan make:model' | |
alias m:event='php artisan make:event' | |
alias migrate='php artisan migrate' | |
alias rollback='php artisan migrate:rollback' | |
alias serve="php artisan serve" | |
alias tinker="php artisan tinker" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment