Created
April 27, 2024 08:55
-
-
Save joparara/16b9711e3edfa67d16d940b7aa9f8dd6 to your computer and use it in GitHub Desktop.
aliases for running laravel related commands
This file contains hidden or 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 pa=’php artisan’ | |
alias pas=’php artisan serve’ | |
alias pam=’php artisan migrate’ | |
alias pamf=’php artisan migrate:fresh’ | |
alias pamm=’php artisan make:migration’ | |
alias model=’php artisan make:model’ | |
alias cntrl=’php artisan make:controller’ | |
alias policy=’php artisan make:policy’ | |
alias middleware=’php artisan make:middleware’ | |
alias routes=’php artisan route:list’ | |
alias wip=’git add . && git commit -m “wip” && git push’ | |
alias gst=’git status’ | |
alias ni=’npm install’ | |
alias watch=’npm run watch’ | |
alias prod=’npm run prod’ | |
alias cr=’composer require’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment