user

Jo Micheal

6 Apr 2022

How to check Laravel version?

Laravel

Hello everyone, In the current time I see a lot of updates in Laravel, I cannot remember what is the Laravel version which I am using in my Application  How can I know the version of Laravel?

Comments

Mohamed Atef

6 Apr 2022

Best Answer

best answer
githubgithubgithub

You can do it using this command 

php artisan --version

Rakshit

7 Apr 2022

You need to run following command:

php artisan --version

OR

php artisan -V

Just for knowledge, It is defined in composer.json file

...
"require": {
 ...
 
 "laravel/framework": "^5.1",
 ...
},
...

Always Remember, Information is not knowledge!

© 2024 Copyrights reserved for web-brackets.com