On StackOverflow a user asked where can they can get a complete list of Laravel events. Jason Lewis gave the answer and I figured it would be useful for others.
1laravel.done 2laravel.log 3laravel.query 4laravel.resolving 5laravel.composing: {viewname} 6laravel.started: {bundlename} 7laravel.controller.factory 8laravel.config.loader 9laravel.language.loader10laravel.view.loader11laravel.view.engine1213view.filter1415eloquent.saving16eloquent.updated17eloquent.created18eloquent.saved19eloquent.deleting20eloquent.deleted212250023404
The 500 and 404 are both error related events. These are set in the routes.php file so you can see what the default listener is.
Iād like to point out that the eloquent.{event} have another variation containing the class name that is being updated.
So a big thanks to Jason for answering.
Filed in: