validate([ 'category' => 'nullable|string|max:60', 'label' => 'nullable|string|max:120', 'city' => 'nullable|string|max:120', 'pois' => 'nullable|array|max:50', 'pois.*.name' => 'string|max:160', 'pois.*.address' => 'nullable|string|max:200', 'pois.*.lat' => 'numeric', 'pois.*.lng' => 'numeric', ]); Cache::put('fox.last_pois', $data, now()->addHours(2)); return response()->json(['ok' => true, 'count' => count($data['pois'] ?? [])]); } }