$links */ public function __construct( public string $senderName, public array $links, public string $expiresAt, ) {} public function envelope(): Envelope { return new Envelope( subject: __(':name shared certificates with you', ['name' => $this->senderName]), ); } public function content(): Content { return new Content( markdown: 'mail.shared-certificate-links', with: [ 'senderName' => $this->senderName, 'links' => $this->links, 'expiresAt' => $this->expiresAt, ], ); } }