Keith Brink
Keith Brink
@dazza-dev I started using this in my project, and it works great for exports, but one issue I found was that the ExcelFake returns a PendingDispatch instead of a PendingBatch.
For sure! It would look something like this: ``` Excel::fake(); $pending_batch = Excel::queue(new BatchExport, 'filename'); // This will work without the fake, and fail with the fake $pending_batch->catch(fn(Batch $batch) =>...
Brilliant, thank you. One more comment here, there could be some tweaks to improve the usefulness of the batches. The jobs are currently executed in a chain. The order should...