Fresh code drop

Dispatch many jobs with Bus bulk

PHP

Laravel 13 API example based on official Laravel documentation. Source: https://laravel.com/framework/docs/changelog#introduce-busbulk

PHP
CodeSnap // free canvas

Dispatch many jobs with Bus bulk

<?php

use Illuminate\Support\Facades\Bus;

Bus::bulk(
    $users
        ->map(fn (User $user) => new RefreshProfile($user))
        ->all(),
);

// Further reading: https://laravel.com/framework/docs/changelog#introduce-busbulk

Turn your code into a post.Five templates are free—no account needed.

Remix this snap