Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Listeners/
Upload File :
Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/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)
    {
        try{
            $orderSmsNotificationBuilderService = new OrderSmsNotificationBuilder($event->info['order_id'], $event->info['status']);
            $orderSmsNotificationBuilderService->send();
        } catch(\Exception $e) {
            Log::info($e->getMessage());
        }
    }
}