declaration->title, ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'emails.declaration-situation', with: [ 'declarationTitle' => $this->declaration->title, 'body' => $this->body, 'uploadUrl' => route('client.upload', ['token' => $this->invitation->token]), 'expiresAt' => $this->invitation->expires_at->format('d/m/Y à H:i'), ] ); } }