line('L\'intégration de ' . $this->integration->agent->first_name . ' ' . $this->integration->agent->last_name . ' est terminée.') ->action('Voir la demande', route('integrations.show', $this->integration)); } public function toArray(object $notifiable): array { return [ 'title' => 'Processus terminé', 'message' => 'L\'intégration de ' . $this->integration->agent->first_name . ' ' . $this->integration->agent->last_name . ' est complète.', 'integration_id' => $this->integration->id, 'type' => 'process_completed', ]; } }