Make coding learn easy

how to create maintenance page in laravel 5.3


create maintenance page in laravel 5.3 its very simply, for first you need to running localhost application server, we use XAMPP. next, going to laravel folder project, for example my folder C:\xampp\htdocs\mylaravel, Optional: if you following this tutorial (how to remove public folder from laravel 5.3) you can going to folder source on laravel folder example: my folder C:\xampp\htdocs\mylaravel\source\.

after entered the folder, search artisan file, if you found the artisan file, open cmd with Shift+right click and choose Open command window here, after open cmd, write this command:
php artisan down

and Enter.

now you can test your maintenance page, open url http://localhost/folder_project_laravel/ with browser and you can view maintenance page like image in below:

if you need to edit maintenance page , you can use file at resources/views/errors/503.blade.php
and edit this file, after edit the file you can have maintenance page your edit like image below :



if you finish maintenance and need to running again the laravel, you need to use this command:

php artisan up

and laravel going to running again.
0 Comments for "how to create maintenance page in laravel 5.3"

Back To Top