diff --git a/src/Notifications/AbstractAlert.php b/src/Notifications/AbstractAlert.php index 70411c6..6e37756 100644 --- a/src/Notifications/AbstractAlert.php +++ b/src/Notifications/AbstractAlert.php @@ -16,18 +16,6 @@ public function __construct(string $subject, array $payload, string $template, C view("uptime::$template", $this->data($payload))->render(), $users, ); - - } - - /** - * Get the notification's delivery channels. - * - * @param mixed $notifiable - * @return array - */ - public function via($notifiable) - { - return ['front']; } protected function data(array $payload, array $additionalData = []): array