Skip to main content

Black Friday 2025! Only until December 1st: coupon FRIDAY25 for 40% off Yearly/Lifetime membership!

Read more here
Tutorial Free

How to customize "artisan down" page?

June 30, 2015
1 min read
Artisan has a convenient command artisan down for an occasion when you need to put your web-project down for a while - for the case of deployment, maintenance or anything like that. Question - how to customize that temporary error page? So if you launch artisan down - visitors should see something like that in a browser: 0630_laravel_artisan_down (actually, the page is much bigger, I just resized the browser for better readability) So how do you customize it? Maybe you want to put your company logo here or some custom text like "We'll be back in 15 mins" or do something like Twitter's Fail Whale. The solution is simple - Laravel has a ready-made Blade template for you. In fact, that whole page is a template - located in resources/views/errors/503.blade.php: 0630_laravel_503_page So change HTML code here to whatever you want - and people will see your personal error message. Just don't forget to run artisan up when you want the app back live!

Enjoyed This Tutorial?

Get access to all premium tutorials, video and text courses, and exclusive Laravel resources. Join our community of 10,000+ developers.

Comments & Discussion

No comments yet…