idUser = $idUser; $this->judul = $judul; $this->pesan = $pesan; $this->data = $data; } /** * Execute the job. */ public function handle(NotifikasiService $notifikasiService): void { $notifikasiService->sendPushNotification($this->idUser, $this->judul, $this->pesan, $this->data); } }