Laravel is an open-source PHP framework. It was created by Taylor Otwell and it is based on Symfony.

Laravel follows Semantic Versioning, which essentially means that the major framework releases are released every six months (February and August), and minor and patch releases may be released as often as every week.

Check your Laravel version with artisan

Laravel comes with a command-line interface called Artisan. Artisan provides a huge number of commands that help you manage and build your Laravel application.

In order to get your exact Laravel version you can just run the following command in the directory of your Laravel project:

C:\xampp\htdocs\laravel-test.com>php artisan --version
Laravel Framework 8.58.0

Check your Laravel version via your text editor

In case you do not have a terminal open, you might want to check your Laravel version via your text editor instead.

To do that, open the following file:

vendor/laravel/framework/src/Illuminate/Foundation/Application.php

Once you have the file open, just search for VERSION. The first constant in the Application class would be the Laravel version:

/**
 * The Laravel framework version.
 *
 * @var string
 */
const VERSION = '8.58.0';