While working on a live Laravel project it might be useful to set the page in a maintenance mode, so that users visiting it, won't see any errors while work's in progress.
For this, practically just log into the server where your project is located, navigate to your project folder and there use the command php artisan down
. This sets your application in a maintenance mode. What people visiting your page then will see is a standard Laravel maintenance page.