code = $code; } public function envelope(): Envelope { return new Envelope( subject: '[' . config('app.name') . '] Two-Factor Authentication Code', ); } public function content(): Content { return new Content( markdown: 'emails.two-factor-code', ); } }