I check Laravel docs for maintenance mode:
https://laravel.com/docs/5.3/configuration#maintenance-mode
When you run the php artisan down command, it will put the application into maintenance mode and return the view 503.blade.php.
It works well, but there is an option that I cannot get to work .. when I do:
php artisan down --message='Upgrading Database' --retry=60
I want to display the message in the form, I tried to access the obvious option with {{ $message }} without success, it returns an undefined variable.
My question is: how to access it?
source share