$this->author->name]), ); } public function content(): Content { return new Content( view: 'mail.mentioned-in-comment', with: [ 'title' => __('mail.mentioned.title', ['name' => $this->author->name]), 'previewText' => Str::limit($this->excerpt, 100), 'authorName' => $this->author->name, 'excerpt' => $this->excerpt, 'url' => route('app.posts.edit', [ 'post' => $this->comment->post_id, 'tab' => 'comments', 'comment' => $this->comment->id, ]), ], ); } public function attachments(): array { return []; } }