token

Results 5 comments of token

1 quick question, do I have to register the event using artisan command or writing the Event::listen code inside the boot() function will work?

Do I have to fire/call the event or it is already written in this package, if yes what is the location/file name

Thank you for your response. Let me try it now

Perfect... It worked, This is the answer, Thanks a lot :)

@goodcurtis Sorry for delayed response I have written the event listener in app/Providers/EventServiceProvider.php file like this ``` Event::listen('Aacotroneo\Saml2\Events\Saml2LoginEvent', function (\Aacotroneo\Saml2\Events\Saml2LoginEvent $event) { Log::info('app/Providers/EventServiceProvider.php'); //echo "inside the event";exit; $user = $event->getSaml2User();...