'pickup.imminent', 'drop_off_point_id' => $this->dropOff->uuid, 'drop_off_name' => $this->dropOff->name, 'message' => "The collection truck just arrived at {$this->dropOff->name}. Bring your bags now.", 'action_label' => 'Track Pickup', 'action_url' => '/pickups', ]; } public function toSms(mixed $notifiable): array { return [ 'to' => $notifiable->phone, 'message' => "Verde: Truck just arrived at {$this->dropOff->name}. Drop off your bags now.", ]; } public function toPush(mixed $notifiable): array { return [ 'title' => 'Pickup imminent', 'body' => "Truck arrived at {$this->dropOff->name}. Drop your bags now.", 'data' => [ 'type' => 'pickup.imminent', 'drop_off_point_id' => $this->dropOff->uuid, ], ]; } }