Error Handling - Laravel - The PHP Framework For Web Artisans
laravel.com › docs › 9When you register a custom exception reporting callback using the reportable method, Laravel will still log the exception using the default logging configuration for the application. If you wish to stop the propagation of the exception to the default logging stack, you may use the stop method when defining your reporting callback or return false from the callback:
Queues - Laravel - The PHP Framework For Web Artisans
laravel.com › docs › 9Laravel's job batching feature allows you to easily execute a batch of jobs and then perform some action when the batch of jobs has completed executing. Before getting started, you should create a database migration to build a table to contain meta information about your job batches, such as their completion percentage.