user = $user; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: '👍 Your password has been changed!', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.user.changed_password', text: 'emails.user.changed_password_plain', ); } }