Tinkerwell 4 is out now! See what's new or buy now.
Tinkerwell background image
Tinkerwell Logo Tinkerwell
Go back to Blog

How to check the Laravel version of your application

Sometimes you need to know the exact version of your Laravel application. Luckily, there are multiple ways how to check the version and you can use the one that fits your needs in a specific situation.

But first, check out Tinkerwell and join more than 12,000 Laravel developers who use Tinkerwell to run code in the context of their Laravel applications without creating /test routes.

Check Laravel version via CLI
#

You can check the Laravel version via an artisan command. This is the easiest way if you use the terminal regularly and are familiar with artisan commands in general. You can get the version via the command:

php artisan --version

Get the Laravel version the app() helper
#

Every Laravel release has the version of the framework as constant in the Application.php file. You can access this constant via the app() helper.

app()->version()

If you don't want to create a /test route to get the version, you can use php artisan tinker to get into the tinker REPL and run it from there. If you use Tinkerwell, you can run the code directly in Tinkerwell and this is what we are doing most of the time. It works on local applications and via SSH and checking the Laravel version is a breeze.

Displaying the Laravel version in a Blade template
#

If you want to check the current Laravel version but don't run code every time, you can also display the version in your admin system via Blade. You can either display it via the app() helper or create a Blade macro for it. Displaying via the helper works with a simple output:

The current Laravel version is {{ app()->version() }}

If you check the Laravel version often and need it in multiple views, it could be useful to have a Blade directive for it. Blade directives are placed in the boot method of the AppServiceProvider of your application and you can add this code to simply display the version in Blade templates with @laravelVersion

Blade::directive('laravelVersion', function () {
return "<?php echo app()->version(); ?>";
});
Taylor Otwell, Creator of Laravel
“I’ve pretty much used Tinkerwell every day since it was released.”

Taylor Otwell

Creator of Laravel

Gilbert Pellegrom, CTO at Lemon Squeezy
“Tinkerwell quickly became an essential part of my daily Laravel workflow. It’s easily the biggest upgrade to my dev experience in years.”

Gilbert Pellegrom

CTO at Lemon Squeezy

Tinkerwell: The PHP Scratchpad

The must-have companion to your favorite IDE. Quickly iterate on PHP code within the context of your web application.

Buy now Learn more