Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/app/Resolvers/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/app/Resolvers/PaymentPlatformResolver.php

<?php

namespace App\Resolvers;

use DB;

class PaymentPlatformResolver
{
    public function resolveService($paymentPlatform)
    {
        $name = strtolower($paymentPlatform);
        $service = config("services.{$name}.class");
        
        if ($service) {
            return resolve($service);
        }

        throw new \Exception(__('The selected platform is not in the configuration file'));
    }
}