@extends('boilerplate::installer.base') @section('title') Queue Setup @endsection @section('content')
@csrf

Queue Setup

It's important to setup how you handle the queue as queues are used to handle background tasks such as mail sending. We support multiple queue drivers:

Sync: A synchronous driver which means no task will be handled in the background. Instead, the task will execute in the same request.

@error('server_error') @enderror
@error('connection')
{{$message}}
@enderror
Failed Jobs
@error('failed_driver')
{{$message}}
@enderror
This determines how failed jobs are stored for later inspection.
@endsection