whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Listeners
/
Upload File:
files >> /home/kckglobal/public_html/portal/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 ©2021 || Defacer Indonesia