blazor-lumen-boilerplate

Queueing Jobs

For additional information about the Queue read the Laravel Queue documentation.

Namespace

use Illuminate\Support\Facades\Queue;

Queue a Job

use App\Jobs\ExampleJob;

Queue::push(new ExampleJob());