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