invite->workspace->name}", ); } public function content(): Content { return new Content( view: 'mail.workspace-invite', with: [ 'title' => "You've been invited to join {$this->invite->workspace->name}", 'previewText' => "{$this->invite->inviter->name} has invited you to collaborate on TryPost.", 'invite' => $this->invite, 'url' => route('invites.show', $this->invite->token), ], ); } public function attachments(): array { return []; } }