data = $data; $this->type = $type; } /** * Get the message envelope. */ public function envelope(): Envelope { $subject = $this->type === 'admin' ? 'Pendaftaran PPDB Baru: ' . ($this->data['nama_lengkap'] ?? 'Calon Siswa') : 'Konfirmasi Pendaftaran PPDB SMK Nasional Nganjuk'; return new Envelope( subject: $subject, ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.pendaftaran-ppdb', ); } }