/
home
/
sditechnicalteam
/
www
/
app
/
Listeners
/
File Upload :
llllll
Current File: /home/sditechnicalteam/www/app/Listeners/NewInvoiceListener.php
<?php namespace App\Listeners; use App\Events\NewInvoiceEvent; use App\Notifications\NewInvoice; use Illuminate\Support\Facades\Notification; class NewInvoiceListener { /** * Handle the event. * * @param NewInvoiceEvent $event * @return void */ public function handle(NewInvoiceEvent $event) { if ($event->notifyUser->email != null) { Notification::send($event->notifyUser, new NewInvoice($event->invoice)); } } }
Copyright ©2k19 -
Hexid
|
Tex7ure