How to get Laravel version

2 Answers

0 votes
// go to: \vendor\laravel\framework\src\Illuminate\Foundation\Application.php

// check the file: Application.php

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

 



answered Feb 5, 2019 by avibootz
0 votes
// On Command Prompt type: php artisan --version

// C:\...\your_website_name>php artisan --version // windows
Laravel Framework 5.7.24

 



answered Feb 5, 2019 by avibootz

Related questions

1 answer 211 views
1 answer 34 views
1 answer 34 views
1 answer 30 views
1 answer 45 views
...