curl --location --request GET 'http://localhost:8000/api/v1/report/most-selling?start_at=2025-01-01&end_at=2026-01-01&cashier=1&supplier=1' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Berhasil mengambil data penjualan",
"data": [
{
"product_name": "ENRICHED CALMING CREAM 30GR",
"selling_count": 20
},
{
"product_name": "CERAMIDE SKIN BARRIER SERUM 20ML",
"selling_count": 9
}
]
}