whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Listeners
/
Upload File:
files >> /home/kckglobal/public_html/portal/app/Listeners/InvoiceUpdatedListener.php
<?php namespace App\Listeners; use App\Events\InvoiceUpdatedEvent; use App\Notifications\InvoiceUpdated; use Illuminate\Support\Facades\Notification; class InvoiceUpdatedListener { /** * Handle the event. * * @param InvoiceUpdatedEvent $event * @return void */ public function handle(InvoiceUpdatedEvent $event) { if (!isRunningInConsoleOrSeeding()) { Notification::send($event->notifyUser, new InvoiceUpdated($event->invoice)); } } }
Copyright ©2021 || Defacer Indonesia