'unauthorized']); exit; } // Validasi X-API-KEY if (!isset($_SERVER['HTTP_X_API_KEY']) || $_SERVER['HTTP_X_API_KEY'] !== 'RETRIBUSI-DASHBOARD-KEY') { http_response_code(401); echo json_encode(['error' => 'unauthorized']); exit; } // Logic chart monthly $month = $_GET['month'] ?? date('Y-m'); $location_code = $_GET['location_code'] ?? null; // ... kode chart monthly yang sudah ada ... $daysInMonth = date('t', strtotime($month . '-01')); echo json_encode([ 'labels' => range(1, $daysInMonth), 'motor' => array_fill(0, $daysInMonth, 0), 'car' => array_fill(0, $daysInMonth, 0), 'person' => array_fill(0, $daysInMonth, 0), 'amount' => array_fill(0, $daysInMonth, 0) ]); */