I want to know what events are fired by Laravel core libraries. I want to get the complete list, such as laravel.query and laravel.done.
Th
If you are debugging your Laravel application, you can get a full list of fired events in the console (for example when you are running unit tests or a artisan command) for the running process with following snippet:
Event::listen('*', function ($event) {
echo $event."\n";
});
If you use logger function it would go to infinite loop.