subject('Просроченная заявка') ->line("Заявка {$this->request->ticket_number} просрочена.") ->action('Открыть заявку', route('requests.show', $this->request)); } public function toArray(object $notifiable): array { return [ 'title' => 'Просроченная заявка', 'message' => "Заявка {$this->request->ticket_number} просрочена", 'request_id' => $this->request->id, 'url' => route('requests.show', $this->request), ]; } }