Able to listen for the event in a plugin's boot method
Event listener isn't triggered for backend.user.login event
Latest
~
public function boot()
{
Event::listen('backend.user.login', function($user)
{
dd($user);
});
}
~
Docs on this here: https://octobercms.com/docs/plugin/registration#elevated-plugin. Feature, not bug.
Most helpful comment
Docs on this here: https://octobercms.com/docs/plugin/registration#elevated-plugin. Feature, not bug.