email = $email; $this->token = $token; // Generate link ke verify-token page dengan email dan token $this->resetLink = route('password.verify.form', ['email' => $email]); } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Reset Password SAS SMK Taruna Bakti Kertosono', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.reset-password', with: [ 'email' => $this->email, 'token' => $this->token, 'resetLink' => $this->resetLink, ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }