token = $token; $this->user = $user; } /** * Build the message. */ public function build(): self { return $this->markdown('emails.auth-api-token-expired', [ 'profileUrl' => URL::to('user/profile'), 'tokenName' => $this->token->name, ]) ->subject(__('Your API token has expired!')); } }