judul = $judul; $this->pesan = $pesan; } public function via($notifiable) { return [FcmChannel::class]; } public function toFcm($notifiable) { return FcmMessage::create() ->setData(['type' => 'nilai_baru']) ->setNotification([ 'title' => $this->judul, 'body' => $this->pesan, ]); } }