framework
framework copied to clipboard
[10.x] Add `dispatchMany` to Bus facade
I often find myself having to dispatch jobs that I don't need to chain or batch.
// Before
foreach($jobs as $job){
Bus::dispatch($job);
}
// After
Bus::dispatchMany($jobs);