curl --location --request GET 'http://localhost:8000/api/v1/report/selling-item?per_page=5&page=1&cashier=&supplier' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Berhasil mengambil data penjualan per produk",
"data": [
{
"total_selling": 1000000,
"selling_count": 20,
"detail": {
"namaProduk": "ENRICHED CALMING CREAM 30GR",
"thumbnail": []
}
},
{
"total_selling": 504000,
"selling_count": 9,
"detail": {
"namaProduk": "CERAMIDE SKIN BARRIER SERUM 20ML",
"thumbnail": []
}
}
]
}