$this->otp, 'app' => config('app.name'), ]), ); } public function content(): Content { $client = SessionHelper::parseUserAgent($this->userAgent); return new Content( markdown: 'emails.two-factor-otp', with: [ 'otp' => $this->otp, 'userName' => $this->userName, 'expiresInMinutes' => $this->expiresInMinutes, 'ipAddress' => $this->ipAddress, 'browser' => $client['browser'], 'os' => $client['os'], 'requestedAt' => now()->format('d M Y, H:i T'), ], ); } }