InterviewSolution
Saved Bookmarks
| 1. |
How to enable/disable maintenance mode in Laravel 5? |
|
Answer» To ENABLE MAINTENANCE MODE, we have to use this ARTISAN command php artisan down To disable maintenance mode, we have to use this artisan command php artisan up |
|