This class is registered as singleton and allows you to batch activities. Once captured as a batch these activities can be pulled back up as a group.
LogBatch::startBatch();
LogBatch::getUuid();
$log = activity()->log('log look mom, I did something...');
$author = Author::first();
$author->delete();
Activity::latest()->get();
$log->batch_uuid;
LogBatch::endBatch();
##startBatch
public function startBatch(): void;
##isOpen
public function isOpen(): bool;
##setBatch
public function setBatch(string $uuid): void;
##endBatch
public function endBatch(): void;
##withinBatch
public function withinBatch(Closure $callback): mixed;