Plain Dev Blog
← Back to all posts

Using command aliases for Laravel Development

·

Using command aliases for Laravel Development

I recently found myself extensively typing commands such as:

php artisan

or

php artisan tinker

so I’ve decided to look for a way to create aliases which will shorten those commands and speed my workflow(I know it does not seem like much but helps)

There are quite a few articles and sources on this topic such as this article from Laravel News or this video on the Laravel Daily channel I personally think it’s just a matter of personal preference the rest is to know how to create such aliases

This is an example for Ubuntu, since that’s what I’m using

echo "alias cls=’clear’" >> ~/.bash_aliases

Simple as that, the only thing after running the above would be to restart your terminal session and you’d be good to go.

Now I mainly use:

  • tinker - for starting laravel tinker

  • mg - for running migrations

  • t - for running tests

  • srv -for starting a development server

A few articles showcasing different preferences:

Conclusion

You can easily speed up your workflow by using such command aliases, you can create one for your most used commands.

Share this post