How to check the Laravel version in your project

Today I am sharing with you, how can easily check the laravel application version into your current project. Sometimes, we need to check our application version or which version are currently we using.

Two ways you can check the laravel version. Let's see,

Example 1:

Using the command line(CMD)

php artisan --version

Example 2:

Or, check the version using the helper method

app()->version()
Tags : laravel

Related Post

How to connect Dynamic database in Laravel
How to use foreach loop in blade using Laravel
How to send email with attachment in Laravel
Laravel Carbon get all dates between date range