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