contract->title}", ); } public function content(): Content { $downloadUrl = config('app.url').'/esign/sign/'.$this->signer->access_token.'/api/document'; return new Content( html: 'emails.esign.completed', with: [ 'contractTitle' => $this->contract->title, 'signerName' => $this->signer->name, 'completedAt' => $this->contract->completed_at?->format('Y-m-d H:i'), 'allSigners' => $this->allSigners, 'downloadUrl' => $downloadUrl, ], ); } }