*/ public function toArray(Request $request): array { return [ 'hold_id' => $this->id, 'slot_id' => $this->slot_id, 'status' => $this->status->value, 'expires_at' => $this->expires_at->toIso8601String(), 'confirmed_at' => $this->confirmed_at?->toIso8601String(), 'cancelled_at' => $this->cancelled_at?->toIso8601String(), ]; } }