How can we check the Laravel current version?

One can easily check the current version of Laravel installation using the -version option of artisan command.

Php artisan -version

In Laravel, you can check the current version using the following command in the terminal:

bash
php artisan --version

This command will display the installed version of Laravel in your project. Alternatively, you can also check the version by looking at the composer.json file in your Laravel project directory, where you’ll find the Laravel framework listed as a dependency along with its version number.