user image

Jo Micheal
Published in : 2022-04-07

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 Date : 2022-04-07

Best answers

51

Best answers

51

You can do it using this command 

php artisan --version

Rakshit Date : 2022-04-07

Best answers

34

Best answers

34

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!

Leave a comment

Join us

Join our community and get the chance to solve your code issues & share your opinion with us

Sign up Now

Related posts

Laravel Network is unreachable stream_socket_client 587
Publish date: 2022-02-16 | Comments: 4
How to pass valiables to 404 error page in laravel?
Publish date: 2022-02-21 | Comments: 2
Laravel redirect to the last location after login
Publish date: 2022-02-21 | Comments: 1