*/ public function via(object $notifiable): array { return [WebPushChannel::class]; } public function toWebPush(object $notifiable, mixed $notification): WebPushMessage { $webPushMessage = (new WebPushMessage) ->title($this->title) ->icon('/icon-192x192.png') ->body($this->body); if ($this->url) { $webPushMessage->action('Lihat Detail', $this->url); } return $webPushMessage; } }