How to check the laravel version: 1. Open the cmd command window; 2. In the cmd window, use the cd command to enter the laravel installation directory; 3. Execute "php artisan --version" or "php artisan" command to view the version number.
The operating environment of this tutorial: Windows 7 system, Laravel 6 version, Dell G3 computer.
View the version number of laravel framework
Open cmd (command prompt)
Enter the laravel installation directory in cmd
In the laravel installation directory, execute the following command
php artisan --version
Or execute the following command, the top result is the laravel version.
php artisan
Related recommendations: The latest five Laravel video tutorials
The above is the detailed content of How to check laravel version. For more information, please follow other related articles on the PHP Chinese website!