*/ public function via(object $notifiable): array { return [WebPushChannel::class]; } public function toWebPush($notifiable, $notification): WebPushMessage { return (new WebPushMessage) ->title("New deal from {$this->deal->broker->name}") ->body("Check out this deal: {$this->deal->title}") ->action('View deal', route('explore', ['show' => $this->deal->id])); } }