I am a newbie in Laravel and want to set up my first Laravel project. I am following the Laravel documentation. So far, I installed Composer and downloaded the Laravel installer using Composer.
Now, the documentation says:
Make sure to place the $HOME/.composer/vendor/bin directory (or the equivalent directory for your OS) in your $PATH so the laravel executable can be located by your system.
To set up $PATH variable I have added this line of code in ~/.bashrc file:
export PATH="$PATH:$HOME/.composer/vendor/bin"
But, when I type laravel the terminal says:
laravel: command not found
I searched similar question but couldn't find the right $PATH variable for my OS which is Linux Mint 18.
Can you tell me the right $PATH variable or equivalent directory for my OS?
Thank You.