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.
laravel.donelaravel.loglaravel.querylaravel.resolvinglaravel.composing: {viewname}laravel.started: {bundlename}laravel.controller.factorylaravel.config.loaderlaravel.language.loaderlaravel.view.loaderlaravel.view.engine view.filter eloquent.savingeloquent.updatedeloquent.createdeloquent.savedeloquent.deletingeloquent.deleted 500404
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: