I don\'t want to check my Laravel version in the command prompt (php artisan --version
), but in the view itself.
Like this:
There are different ways of coding, I found multiple ways to current version find in Laravel
View current Laravel version through Blade Templates, there are many ways:
First way
{{ App::VERSION() }}
Second way
Third way
Also, the Laravel version installed can be checked in the command line using the following command :
php artisan --version