blogs crud

This commit is contained in:
hamid zarghami
2025-09-25 12:18:04 +03:30
parent edf6bcfc3d
commit 475a881f2f
17 changed files with 807 additions and 2 deletions
+5
View File
@@ -20,3 +20,8 @@ export const getSellerOrders = async (
});
return data;
};
export const getOrderDetailUser = async (id: string) => {
const { data } = await axios.get(`/order/${id}/user`);
return data;
};