If there is one out of many pain in the A** laravel developer faces especially when building laravel project is continuously typing php artisan command for almost laravel artisan command via terminal. This step also can be applied to any repeatable command you normally type when developing an application or working via terminal.
Lets get started:-
STEP 1
=> Get Cmder Download link or if you have Laragon already installed cmder comes preinstalled.
STEP 2
=> Go to your Laragon installation folder as for me, I install my laragon app at C:\laragon as shown below :-
STEP 3
=> To locate cmder goto C:\laragon\bin\cmder
STEP 4
=> To add an alias C:\laragon\bin\cmder\config
Locate a file user_aliases.cmd
and open it.
Adding Aliases
You can add aliases using the alias command. Aliases added using the alias command will be immediately available and persist across Cmder sessions. For our case type pa=php artisan $*
as shown below:-
After following all the steps above down to writing down all your aliases aka nickname or pseudo-name you can save your changes. Then open your cmder and type pa
as shown below:-
Congratulation for solving one pain out of many you have when working with repeatable command on cmder.
Thanks for reading!
Remember the like
Any question? drop it at the comment box let see how we can resolve it....
Top comments (1)
Thanks for sharing.