$route) { $notifiable->route($channel, $route); } return $notifiable; } /** * Begin sending a notification to an anonymous notifiable. * * @param string $channel * @param mixed $route * @return \Illuminate\Notifications\AnonymousNotifiable */ public static function route($channel, $route) { return (new AnonymousNotifiable)->route($channel, $route); } /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return ChannelManager::class; } }