provider = $provider; } /** * @param $notifiable * @param Notification $notification * @throws MailTemplatesException */ public function send($notifiable, Notification $notification) { $template = $notification->toTemplate($notifiable); $this->provider->send($template, $notifiable); } }