I am trying to put my application into maintenance mode via php artisan down.
php artisan down --refresh=5 works fine and my browser refreshes after 5 seconds
If I want to render a custom maintenance view with php artisan down --render="maintenance.index" it renders the view located in resources/views/maintenance/index.blade.php like I want it to do.
But when I am using both parameters like this
php artisan down --render="maintenance.index" --refresh=5
It just renders the custom view but is not refreshing after 5 seconds. I thought maybe it matters in which order I type in the parameters. But it doesn't work either way.
php artisan down --refresh=5 --render="maintenance.index"
Is there a possibility to put my app into maintenance mode, rendering a custom view and refreshing the page every 5 seconds without editing the default 503.blade.php file?