Cron

A cron must be created that runs every minute calling artisan. An example is below. See the docs

@if($cron_problem_exists) @endif

Web Cron

If you don't have cron access on your server, you can use a web-cron service to access this URL every minute. Keep it disabled if you're not using it. It's a unique ID that can be reset/changed if needed for security.

{{ Form::open(['url' => route('admin.maintenance.cron_enable'), 'method' => 'post']) }} {{ Form::button('Enable/Change ID', ['type' => 'submit', 'class' => 'btn btn-success']) }} {{ Form::close() }} {{ Form::open(['url' => route('admin.maintenance.cron_disable'), 'method' => 'post']) }} {{ Form::button('Disable', ['type' => 'submit', 'class' => 'btn btn-warning']) }} {{ Form::close() }}