InterviewSolution
Saved Bookmarks
| 1. |
How to put Laravel applications in maintenance mode? |
|
Answer» Maintenance mode is used to put a maintenance page to customers and under the hood, we can do software updates, BUG fixes, ETC. Laravel applications can be put into maintenance mode USING the below command: php artisan down And can put the application again on live using the below command: php artisan up Also, it is POSSIBLE to access the website in maintenance mode by whitelisting particular IPs. |
|