PATH:
home
/
lab2454c
/
credityorkgroup.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Auth
/
Listeners
<?php namespace Illuminate\Auth\Listeners; use Illuminate\Auth\Events\Registered; use Illuminate\Contracts\Auth\MustVerifyEmail; class SendEmailVerificationNotification { /** * Handle the event. * * @param \Illuminate\Auth\Events\Registered $event * @return void */ public function handle(Registered $event) { if ($event->user instanceof MustVerifyEmail && ! $event->user->hasVerifiedEmail()) { $event->user->sendEmailVerificationNotification(); } } }
[+]
..
[-] SendEmailVerificationNotification.php
[edit]