token = $token; } public function build() { return $this->view('vendor.mail.html.custom-layout') // Menggunakan layout kustom ->with([ 'greeting' => 'Hello!', 'introLines' => ['Here is your verification link!'], 'actionText' => 'Verify Now', 'actionUrl' => url('/verify-email'), 'outroLines' => ['If you did not request this, please ignore this email.'], ]); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'view.name', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }