folder->title, ); } /** * Get the message content definition. */ public function content(): Content { $messagesUrl = $this->token ? route('client.upload', ['token' => $this->token]) : route('folders.show', ['folder' => $this->folder]).'?tab=messages'; return new Content( markdown: 'emails.folder-text-message', with: [ 'folderTitle' => $this->folder->title, 'body' => $this->body, 'messagesUrl' => $messagesUrl, ] ); } }