Jo Micheal
Published in : 2022-04-07
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?
You can do it using this command
php artisan --version
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!
Join our community and get the chance to solve your code issues & share your opinion with us
Sign up Now