Laravel Maintenance Mode Turn on with Artisan
I will show you how to turn on Laravel maintenance mode with Artisan. At the point when your application is in support mode, a custom view will be shown for all solicitations into your application..
To enable maintenance mode essentially execute the down Artisan order:
php artisan down
To disable maintenance mode, use the up command:
php artisan up
Default template for maintenance mode responses is located. resources/views/errors/503.blade.php you can change design related your theme.