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/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());
        }
    }
}