Get laravel version

Created at 04-Sep-2021 , By samar

Get laravel version

Hello everyone, in this post we will look at how to solve "Get laravel version" in programming.

You can get laravel version of current working project using command on terminal and you can also use code snippet to get the version with app() helper method
  • Get laravel version using code snippet

    //Get laravel version in controller file
    app\Http\Controllers\HomeController.php
    
    //Inside controller method
    app()->version()
    
    //Get laravel version in view file
    //resources\views\home.blade.php
    {{ app()->version() }}
    
    //routes\web.php
    Route::get('/get-version', function(){
        echo app()->version();
    });
    

    Output : 8.26.1

    You can get the version of laravel using app()->version() method. This is helper method you can call in controller as well as view file. 

  • Get laravel version using command in terminal

    php artisan -v
    

    Go to your project directory and run command php artisan -v to get the laravel version of current working project.

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.