Where can I get a complete list of Laravel events (fired by the core libraries)?

前端 未结 4 924
你的背包
你的背包 2020-12-25 12:10

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

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-25 12:57

    Laravel doesn't actually fire as many events as you'd think. While it does make use of the Event system it's there for developers to use within there applications. Anyway, here's a list I compiled.

    laravel.done
    laravel.log
    laravel.query
    laravel.resolving
    laravel.composing: {viewname}
    laravel.started: {bundlename}
    laravel.controller.factory
    laravel.config.loader
    laravel.language.loader
    laravel.view.loader
    laravel.view.engine
    
    view.filter
    
    eloquent.saving
    eloquent.updated
    eloquent.created
    eloquent.saved
    eloquent.deleting
    eloquent.deleted
    eloquent.booted: {$model}
    eloquent.booting: {$model}
    
    
    500
    404
    

    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.

    eloquent.{event}: {classname}
    

    I'm not going to say this is absolutely everything but it should be at least 99% of it.

提交回复
热议问题