I noticed operations done inside the defer() helper don't get added to the request data
For example database operations even though successful are not shown
defer(function() {
// this doesn't get logged
Model::create([...]);
});
Laravel Defer Helper documentation