Get "PHP 8 in a Nuthshell" (Now comes with PHP 8.3)
Amit Merchant

Amit Merchant

A blog on PHP, JavaScript, and more

Personalized maintenance mode views in Laravel 8

When you put your Laravel application on maintenance mode using the php artisan down command, the default view for the same looks like following.

It’s working but what if you want to customize this page and make it look more in line with your product’s design aesthetics? Well, using Laravel 8, it’s pretty easy to implement this.

Customized Maintenance Mode Views

Laravel 8 now allows you to pre-render your maintenance mode view using a new render option that you’d be using with php artisan down command like so.

$ php artisan down --render="your-custom-view"

For instance, you can create a Blade view called maintenance.blade.php under resources/views directory with the following content.

<!-- resources/views/maintenance.blade.php -->

<div>
    <p>Oops! The site is down currently.</p>
    <p>Please check back later.</p>
</div>

…You can pre-render this as your maintenance mode view like so.

$ php artisan down --render="maintenance"

The resulting maintenance mode view would like the following.

That’s it! That’s your own maintenance mode view. Now, you can customize further however you want!

Using in-built error views of Laravel

You can also use Laravel’s error views which come in-built. You can publish this view into your project using the php artisan vendor:publish command which will allow you to choose an option for laravel-errors.

This will copy the error views from /vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views to your project’s /resources/views/errors. Here are all the error views that you’ll get.

You can use any error view from these as your maintenance mode view. For instance, if I want to use the illustrated-layout.blade.php as my maintenance mode view, I can use it like so.

$ php artisan down --render="errors::illustrated-layout"

This will get rendered like so in the browser.

Learn the fundamentals of PHP 8 (including 8.1, 8.2, and 8.3), the latest version of PHP, and how to use it today with my new book PHP 8 in a Nutshell. It's a no-fluff and easy-to-digest guide to the latest features and nitty-gritty details of PHP 8. So, if you're looking for a quick and easy way to PHP 8, this is the book for you.

Like this article? Consider leaving a

Tip

👋 Hi there! I'm Amit. I write articles about all things web development. You can become a sponsor on my blog to help me continue my writing journey and get your brand in front of thousands of eyes.

Comments?