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