use App\Services\Sms\SmsGatewayInterface; use App\Services\Sms\TwilioSmsGateway; public function register() { $this->app->bind(SmsGatewayInterface::class, function () { $driver = config('sms.driver'); if ($driver === 'twilio') { return new TwilioSmsGateway(); } throw new \RuntimeException("SMS driver [$driver] no soportado"); }); } Error 500

500

Server Error