toSms($notifiable); $phone = $notifiable->routeNotificationFor('sms', $notification); if (! $phone && ! $message instanceof Message) { return; } try { $this->easySms->send($phone, $message); } catch (NoGatewayAvailableException $e) { foreach ($e->getExceptions() as $exception) { report($exception); } } } }