D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
mikyal.online
/
app
/
Listeners
/
Filename :
SendOrderGotSmsNotification.php
back
Copy
<?php namespace App\Listeners; use App\Events\SendOrderGotSms; use App\Services\OrderGotSmsNotificationBuilder; use Illuminate\Support\Facades\Log; class SendOrderGotSmsNotification { public function handle(SendOrderGotSms $event): void { try { $orderGotSmsNotificationBuilderService = new OrderGotSmsNotificationBuilder($event->info['order_id']); $orderGotSmsNotificationBuilderService->send(); } catch (\Exception $e) { Log::info($e->getMessage()); } } }