whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Listeners
/
Upload File:
files >> /home/kckglobal/public_html/portal/app/Listeners/NewEstimateRequestListener.php
<?php namespace App\Listeners; use App\Events\NewEstimateRequestEvent; use App\Models\User; use Illuminate\Support\Facades\Notification; use App\Notifications\NewEstimateRequest; class NewEstimateRequestListener { /** * Handle the event. */ public function handle(NewEstimateRequestEvent $event): void { $companyId = $event->estimateRequest->company->id; Notification::send(User::allAdmins($companyId), new NewEstimateRequest($event->estimateRequest)); } }
Copyright ©2021 || Defacer Indonesia