subject('Новый комментарий к заявке') ->line("{$this->author->name} добавил комментарий к заявке {$this->request->ticket_number}.") ->action('Открыть заявку', route('requests.show', $this->request)); } public function toArray(object $notifiable): array { return [ 'title' => 'Новый комментарий', 'message' => "{$this->author->name} добавил комментарий к {$this->request->ticket_number}", 'request_id' => $this->request->id, 'url' => route('requests.show', $this->request), ]; } }