{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "http:\/\/127.0.0.1:8000"
        }
    ],
    "info": {
        "name": "GAGA API Documentation",
        "_postman_id": "ad7379ff-30ed-468e-9439-84d8eeb2863e",
        "description": "The complete API reference for GAGA Delivery ecosystem - powering orders, drivers, and stores.",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Auth",
            "description": "",
            "item": [
                {
                    "name": "Send OTP to customer via WhatsApp.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/send-otp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/send-otp"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"phone_number\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 202,
                            "body": "{\n  \"message\": \"OTP sent successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verify OTP and check user existence.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/verify-otp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/verify-otp"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"phone_number\":\"consequatur\",\"verification_code\":\"consequatur\",\"device_id\":\"consequatur\",\"fcm_token\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"existing_user\",\n  \"message\": \"Authentication successful\",\n  \"user\": { \"id\": 1, \"full_name\": \"Jane Doe\" },\n  \"token_type\": \"Bearer\",\n  \"token\": \"1|abcdef...\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Complete user profile creation after OTP verification.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/complete-profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/complete-profile"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"phone_number\":\"consequatur\",\"first_name\":\"mqeopfuudtdsufvyvddqa\",\"last_name\":\"mniihfqcoynlazghdtqtq\",\"device_id\":\"consequatur\",\"fcm_token\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"status\": \"registered\",\n  \"message\": \"Registration successful\",\n  \"user\": { \"id\": 1, \"full_name\": \"Jane Doe\" },\n  \"token_type\": \"Bearer\",\n  \"token\": \"2|ghijk...\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get authenticated user info.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"user\": { \"id\": 1, \"full_name\": \"Jane Doe\" }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Logout user (revoke token).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Logged out successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Refresh token (rotate token).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/refresh-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/refresh-token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Token refreshed successfully\",\n  \"token_type\": \"Bearer\",\n  \"token\": \"3|lmnop...\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Store",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/store\/stores",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/stores",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/stores"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"Burger King\",\n      \"category\": { \"name\": \"Fast Food\" }\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/store\/stores\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/stores\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/stores\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the store."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 1,\n  \"name\": \"Burger King\",\n  \"workingHours\": []\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/store\/stores",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/stores",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/stores"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"category_id\":\"consequatur\",\"name\":\"mqeopfuudtdsufvyvddqa\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"logo\":\"dtdsufvyvddqamniihfqc\",\"background\":\"oynlazghdtqtqxbajwbpi\",\"location\":\"lpmufinllwloauydlsmsj\",\"phone_number\":\"uryvojcybzvrbyick\",\"delivery_price\":88,\"status\":\"active\",\"working_hours\":[{\"day_of_week\":1,\"open_time\":\"18:49\",\"close_time\":\"18:49\",\"is_closed\":true}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"id\": 1,\n  \"name\": \"Burger King\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/store\/stores\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/stores\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/stores\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the store."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"logo\":\"dtdsufvyvddqamniihfqc\",\"background\":\"oynlazghdtqtqxbajwbpi\",\"location\":\"lpmufinllwloauydlsmsj\",\"phone_number\":\"uryvojcybzvrbyick\",\"delivery_price\":88,\"status\":\"active\",\"working_hours\":[{\"day_of_week\":1,\"open_time\":\"18:49\",\"close_time\":\"18:49\",\"is_closed\":false}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 1,\n  \"name\": \"Burger King Updated\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/store\/stores\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/stores\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/stores\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the store."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Store deleted successfully\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Orders",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"orderId\": 1,\n      \"status\": \"pending\",\n      \"total\": 45.0\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"store_id\":17,\"branch_id\":17,\"address_id\":17,\"payment_method\":17,\"items\":[{\"product_id\":17,\"quantity\":45,\"special_instructions\":\"consequatur\"}],\"notes\":\"consequatur\",\"promo_code\":\"mqeopfuudtdsufvyvddqa\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"order_id\": 1,\n  \"status\": \"searching_driver\",\n  \"total\": 45.0,\n  \"promo_code\": \"DISCOUNT10\",\n  \"promo_discount\": 5.0\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/orders\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"orderId\": 1,\n  \"status\": \"pending\",\n  \"pricing\": {\n    \"total\": 45.0,\n    \"currency\": \"MAD\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/orders\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":17,\"store_id\":17,\"branch_id\":17,\"address_id\":17,\"store_lat\":-90,\"store_lng\":-179,\"client_lat\":-90,\"client_lng\":-179,\"distance_km\":55,\"duration_minutes\":19,\"delivery_type\":\"moto\",\"store_status\":\"preparing\",\"driver_status\":\"picked_up\",\"subtotal\":70,\"delivery_fee\":70,\"service_fee\":12,\"discount\":66,\"total\":13,\"status\":\"accepted\",\"notes\":\"consequatur\",\"estimated_preparation_time\":45}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"orderId\": 1,\n  \"status\": \"accepted\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Dispatch",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/order-dispatches",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/order-dispatches",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/order-dispatches"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"status\": \"sent\",\n      \"order\": { \"id\": 1 },\n      \"driver\": { \"id\": 5 }\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/order-dispatches",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/order-dispatches",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/order-dispatches"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order_id\":17,\"driver_id\":17,\"distance_to_pickup\":45,\"status\":\"accepted\",\"batch_number\":56,\"sent_at\":\"2026-04-20T18:49:35\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"id\": 1,\n  \"status\": \"sent\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/order-dispatches\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/order-dispatches\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/order-dispatches\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order dispatch."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 1,\n  \"status\": \"sent\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/order-dispatches\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/order-dispatches\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/order-dispatches\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order dispatch."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order_id\":17,\"driver_id\":17,\"distance_to_pickup\":45,\"status\":\"rejected\",\"batch_number\":56,\"sent_at\":\"2026-04-20T18:49:35\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 1,\n  \"status\": \"accepted\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/order-dispatches\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/order-dispatches\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/order-dispatches\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order dispatch."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Driver accepts a dispatched order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:order_id\/accept",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:order_id\/accept",
                            "variable": [
                                {
                                    "id": "order_id",
                                    "key": "order_id",
                                    "value": "1",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Order accepted\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/orders\/{order_id}\/track",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:order_id\/track",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:order_id\/track",
                            "variable": [
                                {
                                    "id": "order_id",
                                    "key": "order_id",
                                    "value": "1",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"driver_location\": {\n    \"lat\": 36.7538,\n    \"lng\": 3.0588,\n    \"updated_at\": \"2024-03-20T14:30:00+00:00\"\n  },\n  \"status\": \"assigned\",\n  \"eta_minutes\": 15,\n  \"distance_remaining_km\": 5.0\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/orders\/{order_id}\/stream",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:order_id\/stream",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:order_id\/stream",
                            "variable": [
                                {
                                    "id": "order_id",
                                    "key": "order_id",
                                    "value": "1",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"searching\",\n  \"message\": \"Finding driver\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Driver",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/drivers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/drivers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/drivers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"type\": \"bike\",\n      \"is_active\": true,\n      \"is_online\": true,\n      \"is_available\": true,\n      \"user\": {\n        \"full_name\": \"John Doe\"\n      }\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/drivers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/drivers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/drivers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the driver."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 1,\n  \"type\": \"bike\",\n  \"user\": {\n    \"full_name\": \"John Doe\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/drivers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/drivers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/drivers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the driver."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":17,\"type\":\"moto\",\"is_active\":false,\"is_online\":true,\"is_available\":true,\"lat\":-90,\"lng\":-179,\"last_location_at\":\"2026-04-20T18:49:35\",\"rating\":1,\"total_deliveries\":50}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 1,\n  \"type\": \"moto\",\n  \"is_active\": true\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/drivers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/drivers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/drivers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the driver."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "GET api\/login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/login"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/user"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of global categories.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Molestiae Impedit\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":2,\"name\":\"Non Odio\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":3,\"name\":\"Perspiciatis Quia\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":4,\"name\":\"Quae Quod\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":5,\"name\":\"Non Esse\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":6,\"name\":\"Unde Aut\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":7,\"name\":\"Eos Iure\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":8,\"name\":\"Laboriosam Cumque\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":9,\"name\":\"Perspiciatis Veritatis\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"},{\"id\":10,\"name\":\"Non Asperiores\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"}],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/global\\\/categories?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/global\\\/categories?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/global\\\/categories?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/global\\\/categories\",\"per_page\":15,\"to\":10,\"total\":10}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":1,\"name\":\"Molestiae Impedit\",\"image_url\":null,\"is_active\":null,\"created_at\":\"2026-04-15T15:32:02.000000Z\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the ads.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/ads",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/ads"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/global\\\/ads?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/global\\\/ads?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/global\\\/ads?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/global\\\/ads\",\"per_page\":15,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified ad.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/ads\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/ads\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the ad."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"No query results for model [App\\\\Models\\\\Ad] 17\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created category in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/categories"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the specified category in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified category from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created ad in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/ads",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/ads"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the specified ad in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/ads\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/ads\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the ad."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified ad from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/global\/ads\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/global\/ads\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the ad."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display a listing of drivers.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/drivers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/drivers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.754,\"lng\":3.059,\"last_location_at\":\"2026-04-15T16:32:10+00:00\",\"rating\":\"4.32\",\"total_deliveries\":234,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Store Owner\",\"email\":\"store-owner@example.com\",\"phone\":\"+10000000001\",\"avatar\":null}},{\"id\":2,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.760522,\"lng\":2.997464,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.90\",\"total_deliveries\":253,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":null,\"email\":\"admin@example.com\",\"phone\":null,\"avatar\":null}},{\"id\":3,\"type\":\"bike\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.7545,\"lng\":3.0595,\"last_location_at\":\"2026-04-20T11:34:24+00:00\",\"rating\":\"3.12\",\"total_deliveries\":388,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T17:39:35.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":null,\"phone\":\"212603108099\",\"avatar\":null}},{\"id\":4,\"type\":\"bike\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.787234,\"lng\":3.055615,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.13\",\"total_deliveries\":289,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":\"bradtke.trycia@example.net\",\"phone\":\"+1 (434) 984-7985\",\"avatar\":null}},{\"id\":5,\"type\":\"bike\",\"is_active\":true,\"is_online\":false,\"is_available\":false,\"lat\":36.778051,\"lng\":2.994874,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.11\",\"total_deliveries\":225,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":null,\"phone\":\"212603108099\",\"avatar\":null}},{\"id\":6,\"type\":\"bike\",\"is_active\":true,\"is_online\":false,\"is_available\":true,\"lat\":36.759672,\"lng\":3.020749,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.02\",\"total_deliveries\":266,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":null,\"email\":\"admin@example.com\",\"phone\":null,\"avatar\":null}},{\"id\":7,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":false,\"lat\":36.778233,\"lng\":3.002311,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.20\",\"total_deliveries\":475,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":null,\"email\":\"admin@example.com\",\"phone\":null,\"avatar\":null}},{\"id\":8,\"type\":\"bike\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.727602,\"lng\":3.02587,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.73\",\"total_deliveries\":62,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":\"bradtke.trycia@example.net\",\"phone\":\"+1 (434) 984-7985\",\"avatar\":null}},{\"id\":9,\"type\":\"bike\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.782633,\"lng\":3.103601,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"3.04\",\"total_deliveries\":378,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":\"bradtke.trycia@example.net\",\"phone\":\"+1 (434) 984-7985\",\"avatar\":null}},{\"id\":10,\"type\":\"bike\",\"is_active\":true,\"is_online\":false,\"is_available\":true,\"lat\":36.709801,\"lng\":2.988876,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.01\",\"total_deliveries\":466,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Store Owner\",\"email\":\"store-owner@example.com\",\"phone\":\"+10000000001\",\"avatar\":null}},{\"id\":11,\"type\":\"bike\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.73304,\"lng\":2.998014,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"3.94\",\"total_deliveries\":361,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":null,\"phone\":\"212603108099\",\"avatar\":null}},{\"id\":12,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.772052,\"lng\":3.020435,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"3.65\",\"total_deliveries\":18,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":null,\"phone\":\"212603108099\",\"avatar\":null}},{\"id\":13,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.803449,\"lng\":3.034024,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.46\",\"total_deliveries\":158,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Store Owner\",\"email\":\"store-owner@example.com\",\"phone\":\"+10000000001\",\"avatar\":null}},{\"id\":14,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":false,\"lat\":36.766188,\"lng\":3.054263,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"3.93\",\"total_deliveries\":83,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":\"bradtke.trycia@example.net\",\"phone\":\"+1 (434) 984-7985\",\"avatar\":null}},{\"id\":15,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.761955,\"lng\":3.111754,\"last_location_at\":\"2026-04-15T15:32:02+00:00\",\"rating\":\"4.19\",\"total_deliveries\":302,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Test User\",\"email\":\"bradtke.trycia@example.net\",\"phone\":\"+1 (434) 984-7985\",\"avatar\":null}}],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/customer\\\/drivers?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/customer\\\/drivers?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/customer\\\/drivers?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/customer\\\/drivers\",\"per_page\":15,\"to\":15,\"total\":15}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified driver.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/drivers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/drivers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the driver."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":1,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":true,\"lat\":36.754,\"lng\":3.059,\"last_location_at\":\"2026-04-15T16:32:10+00:00\",\"rating\":\"4.32\",\"total_deliveries\":234,\"created_at\":\"2026-04-15T15:32:02.000000Z\",\"updated_at\":\"2026-04-15T15:32:02.000000Z\",\"user\":{\"full_name\":\"Store Owner\",\"email\":\"store-owner@example.com\",\"phone\":\"+10000000001\",\"avatar\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of reviews.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/customer\\\/reviews?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/customer\\\/reviews?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/customer\\\/reviews?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/customer\\\/reviews\",\"per_page\":15,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified review.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"No query results for model [App\\\\Models\\\\Review] 17\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created driver in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/drivers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/drivers"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":17,\"type\":\"moto\",\"is_active\":true,\"is_online\":true,\"is_available\":false,\"lat\":-90,\"lng\":-179,\"last_location_at\":\"2026-04-20T18:49:34\",\"rating\":1,\"total_deliveries\":50}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the specified driver in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/drivers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/drivers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the driver."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":17,\"type\":\"moto\",\"is_active\":false,\"is_online\":false,\"is_available\":true,\"lat\":-90,\"lng\":-179,\"last_location_at\":\"2026-04-20T18:49:34\",\"rating\":1,\"total_deliveries\":50}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified driver from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/drivers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/drivers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the driver."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created review in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the specified review in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified review from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display a listing of personal orders.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/orders"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/orders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/orders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of payments.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/payments"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created payment in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/payments"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display the specified payment.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/payments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/payments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified payment in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/payments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/payments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified payment from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/payments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/payments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Authenticate dashboard user and return token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/dashboard\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/dashboard\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"username\":\"consequatur\",\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Logout user (revoke token).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/dashboard\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/dashboard\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get authenticated user info.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/dashboard\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/dashboard\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Send OTP to provider via WhatsApp.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/provider\/send-otp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/provider\/send-otp"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"phone_number\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Verify OTP and check user existence for providers.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/provider\/verify-otp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/provider\/verify-otp"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"phone_number\":\"consequatur\",\"verification_code\":\"consequatur\",\"device_id\":\"consequatur\",\"fcm_token\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get authenticated user info.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/provider\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/provider\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Logout user (revoke token).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/provider\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/provider\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/driver-shifts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver-shifts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver-shifts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/driver-shifts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver-shifts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver-shifts"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"driver_id\":17,\"start_time\":\"2026-04-20T18:49:35\",\"end_time\":\"2107-05-20\",\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/driver-shifts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver-shifts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver-shifts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the driver shift."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/driver-shifts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver-shifts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver-shifts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the driver shift."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"driver_id\":17,\"start_time\":\"2026-04-20T18:49:35\",\"end_time\":\"2107-05-20\",\"is_active\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/driver-shifts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver-shifts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver-shifts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the driver shift."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/transactions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/transactions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reference_id\":17,\"type\":\"mqeopfuudtdsufvyvddqa\",\"amount\":11613.31890586,\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/transactions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the transaction."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/transactions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the transaction."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reference_id\":17,\"type\":\"mqeopfuudtdsufvyvddqa\",\"amount\":11613.31890586,\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/transactions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the transaction."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Endpoint for Flutter app to send driver location every 30 seconds.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver\/location",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver\/location"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"lat\":11613.31890586,\"lng\":11613.31890586}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/orders\/{order_id}\/status\/picked-up",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:order_id\/status\/picked-up",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:order_id\/status\/picked-up",
                            "variable": [
                                {
                                    "id": "order_id",
                                    "key": "order_id",
                                    "value": "1",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Pickup confirmed\",\n  \"status\": \"on_the_way\",\n  \"customer_location\": {\n    \"lat\": 36.7538,\n    \"lng\": 3.0588\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/orders\/{order_id}\/status\/delivered",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:order_id\/status\/delivered",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:order_id\/status\/delivered",
                            "variable": [
                                {
                                    "id": "order_id",
                                    "key": "order_id",
                                    "value": "1",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Delivery completed\",\n  \"order_id\": 1,\n  \"delivered_at\": \"2024-03-20T15:00:00+00:00\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/orders\/{order_id}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:order_id\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:order_id\/status",
                            "variable": [
                                {
                                    "id": "order_id",
                                    "key": "order_id",
                                    "value": "1",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"order_id\": 1,\n  \"current_status\": \"on_the_way\",\n  \"driver\": {\n    \"id\": 5,\n    \"name\": \"John Doe\"\n  },\n  \"timeline\": [\n    {\n      \"status\": \"sent\",\n      \"driver_name\": \"John Doe\",\n      \"sent_at\": \"2024-03-20T14:30:00+00:00\",\n      \"recorded_at\": \"2024-03-20T14:30:05+00:00\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/devices\/register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/devices\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/devices\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"device_id\":\"vmqeopfuudtdsufvyvddq\",\"platform\":\"ios\",\"fcm_token\":\"consequatur\",\"driver_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"device_registered\": true,\n  \"device_uuid\": \"550e8400-e29b-41d4-a716-446655440000\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/customer\/location",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/location",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/location"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/customer\/location",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/location",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/location"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"lat\":-89,\"lng\":-180,\"source\":\"gps\",\"address_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/test\/trigger-dispatch",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/test\/trigger-dispatch",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/test\/trigger-dispatch"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order_id\":17,\"store_lat\":11613.31890586,\"store_lng\":11613.31890586,\"client_lat\":11613.31890586,\"client_lng\":11613.31890586,\"distance_km\":50}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/test\/simulate-driver",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/test\/simulate-driver",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/test\/simulate-driver"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"lat\":11613.31890586,\"lng\":11613.31890586,\"vehicle_type\":\"bike\",\"is_available\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/dispatch\/order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dispatch\/order",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dispatch\/order"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order_id\":17,\"driver_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"dkchi li 3tak\": {\n    \"success\": true,\n    \"message\": \"Order assigned successfully\",\n    \"order_id\": 1,\n    \"driver_id\": 5\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/notifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\n    \"message\": \"Server Error\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/notifications\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\n    \"message\": \"Server Error\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/notifications\/{notification_id}\/read",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:notification_id\/read",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:notification_id\/read",
                            "variable": [
                                {
                                    "id": "notification_id",
                                    "key": "notification_id",
                                    "value": "17",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/notifications\/fcm-token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/fcm-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/fcm-token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"device_id\":\"vmqeopfuudtdsufvyvddq\",\"platform\":\"ios\",\"fcm_token\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/notifications\/push",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/push",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/push"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"send_all\":false,\"send_to_all\":true,\"user_id\":17,\"users_ids\":[17],\"user_ids\":[17],\"title\":\"mqeopfuudtdsufvyvddqa\",\"body\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"manual_user_ids\":\"dtdsufvyvddqamniihfqc\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/notifications\/register-token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/register-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/register-token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/driver\/dispatches",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver\/dispatches",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver\/dispatches"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/driver\/dispatches\/{dispatch_id}\/accept",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver\/dispatches\/:dispatch_id\/accept",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver\/dispatches\/:dispatch_id\/accept",
                            "variable": [
                                {
                                    "id": "dispatch_id",
                                    "key": "dispatch_id",
                                    "value": "17",
                                    "description": "The ID of the dispatch."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/driver\/deliveries\/active",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver\/deliveries\/active",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver\/deliveries\/active"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/driver\/deliveries\/{delivery_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver\/deliveries\/:delivery_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver\/deliveries\/:delivery_id",
                            "variable": [
                                {
                                    "id": "delivery_id",
                                    "key": "delivery_id",
                                    "value": "1",
                                    "description": "The ID of the delivery."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/driver\/deliveries\/{delivery_id}\/pickup",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver\/deliveries\/:delivery_id\/pickup",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver\/deliveries\/:delivery_id\/pickup",
                            "variable": [
                                {
                                    "id": "delivery_id",
                                    "key": "delivery_id",
                                    "value": "1",
                                    "description": "The ID of the delivery."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/driver\/deliveries\/{delivery_id}\/deliver",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver\/deliveries\/:delivery_id\/deliver",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver\/deliveries\/:delivery_id\/deliver",
                            "variable": [
                                {
                                    "id": "delivery_id",
                                    "key": "delivery_id",
                                    "value": "1",
                                    "description": "The ID of the delivery."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/driver\/availability",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/driver\/availability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/driver\/availability"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"is_online\":false,\"is_available\":true,\"lat\":-89,\"lng\":-180}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/store\/products\/analytics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/products\/analytics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/products\/analytics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/store\/products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/products",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/products"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":22,\"token\":\"yM8Iz\",\"name\":\"Hidden Burger\",\"type\":null,\"description\":\"I should only appear if I am an Admin\",\"image\":null,\"price\":12.99,\"old_price\":12.99,\"new_price\":12.99,\"final_price\":12.99,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":1,\"preparation_time\":null,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":false,\"next_available_at\":null,\"is_active\":false,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":null,\"name\":null},\"images\":[],\"options\":[],\"supplements\":[],\"availability\":[]},{\"id\":21,\"token\":\"ed5Dy\",\"name\":\"Hidden Burger\",\"type\":null,\"description\":\"I should only appear if I am an Admin\",\"image\":null,\"price\":12.99,\"old_price\":12.99,\"new_price\":12.99,\"final_price\":12.99,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":1,\"preparation_time\":null,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":false,\"next_available_at\":null,\"is_active\":false,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":null,\"name\":null},\"images\":[],\"options\":[],\"supplements\":[],\"availability\":[]},{\"id\":15,\"token\":null,\"name\":\"Drinks Item 5\",\"type\":null,\"description\":\"Seeded test product 5 for Drinks.\",\"image\":null,\"price\":30.39,\"old_price\":30.39,\"new_price\":30.39,\"final_price\":30.39,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":4,\"preparation_time\":26,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-15.jpg\"],\"options\":[{\"id\":15,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":43,\"name\":\"Small\",\"price\":0},{\"id\":44,\"name\":\"Medium\",\"price\":1.5},{\"id\":45,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":29,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":30,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":16,\"token\":null,\"name\":\"Desserts Item 1\",\"type\":null,\"description\":\"Seeded test product 1 for Desserts.\",\"image\":null,\"price\":13.98,\"old_price\":13.98,\"new_price\":13.98,\"final_price\":13.98,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":5,\"preparation_time\":8,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-16.jpg\"],\"options\":[{\"id\":16,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":46,\"name\":\"Small\",\"price\":0},{\"id\":47,\"name\":\"Medium\",\"price\":1.5},{\"id\":48,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":31,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":32,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":17,\"token\":null,\"name\":\"Desserts Item 2\",\"type\":null,\"description\":\"Seeded test product 2 for Desserts.\",\"image\":null,\"price\":10.61,\"old_price\":10.61,\"new_price\":10.61,\"final_price\":10.61,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":5,\"preparation_time\":9,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-17.jpg\"],\"options\":[{\"id\":17,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":49,\"name\":\"Small\",\"price\":0},{\"id\":50,\"name\":\"Medium\",\"price\":1.5},{\"id\":51,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":33,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":34,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":18,\"token\":null,\"name\":\"Desserts Item 3\",\"type\":null,\"description\":\"Seeded test product 3 for Desserts.\",\"image\":null,\"price\":34.33,\"old_price\":34.33,\"new_price\":34.33,\"final_price\":34.33,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":5,\"preparation_time\":33,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-18.jpg\"],\"options\":[{\"id\":18,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":52,\"name\":\"Small\",\"price\":0},{\"id\":53,\"name\":\"Medium\",\"price\":1.5},{\"id\":54,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":35,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":36,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":19,\"token\":null,\"name\":\"Desserts Item 4\",\"type\":null,\"description\":\"Seeded test product 4 for Desserts.\",\"image\":null,\"price\":15.33,\"old_price\":15.33,\"new_price\":15.33,\"final_price\":15.33,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":5,\"preparation_time\":22,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-19.jpg\"],\"options\":[{\"id\":19,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":55,\"name\":\"Small\",\"price\":0},{\"id\":56,\"name\":\"Medium\",\"price\":1.5},{\"id\":57,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":37,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":38,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":20,\"token\":null,\"name\":\"Desserts Item 5\",\"type\":null,\"description\":\"Seeded test product 5 for Desserts.\",\"image\":null,\"price\":9.23,\"old_price\":9.23,\"new_price\":9.23,\"final_price\":9.23,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":5,\"preparation_time\":17,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-20.jpg\"],\"options\":[{\"id\":20,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":58,\"name\":\"Small\",\"price\":0},{\"id\":59,\"name\":\"Medium\",\"price\":1.5},{\"id\":60,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":39,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":40,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":9,\"token\":null,\"name\":\"Pizza Item 4\",\"type\":null,\"description\":\"Seeded test product 4 for Pizza.\",\"image\":null,\"price\":27.68,\"old_price\":27.68,\"new_price\":27.68,\"final_price\":27.68,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":3,\"preparation_time\":9,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-9.jpg\"],\"options\":[{\"id\":9,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":25,\"name\":\"Small\",\"price\":0},{\"id\":26,\"name\":\"Medium\",\"price\":1.5},{\"id\":27,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":17,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":18,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":10,\"token\":null,\"name\":\"Pizza Item 5\",\"type\":null,\"description\":\"Seeded test product 5 for Pizza.\",\"image\":null,\"price\":29.66,\"old_price\":29.66,\"new_price\":29.66,\"final_price\":29.66,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":3,\"preparation_time\":18,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-10.jpg\"],\"options\":[{\"id\":10,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":28,\"name\":\"Small\",\"price\":0},{\"id\":29,\"name\":\"Medium\",\"price\":1.5},{\"id\":30,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":19,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":20,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":11,\"token\":null,\"name\":\"Drinks Item 1\",\"type\":null,\"description\":\"Seeded test product 1 for Drinks.\",\"image\":null,\"price\":21.33,\"old_price\":21.33,\"new_price\":21.33,\"final_price\":21.33,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":4,\"preparation_time\":23,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-11.jpg\"],\"options\":[{\"id\":11,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":31,\"name\":\"Small\",\"price\":0},{\"id\":32,\"name\":\"Medium\",\"price\":1.5},{\"id\":33,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":21,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":22,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":12,\"token\":null,\"name\":\"Drinks Item 2\",\"type\":null,\"description\":\"Seeded test product 2 for Drinks.\",\"image\":null,\"price\":23.97,\"old_price\":23.97,\"new_price\":23.97,\"final_price\":23.97,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":4,\"preparation_time\":16,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-12.jpg\"],\"options\":[{\"id\":12,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":34,\"name\":\"Small\",\"price\":0},{\"id\":35,\"name\":\"Medium\",\"price\":1.5},{\"id\":36,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":23,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":24,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":13,\"token\":null,\"name\":\"Drinks Item 3\",\"type\":null,\"description\":\"Seeded test product 3 for Drinks.\",\"image\":null,\"price\":9.63,\"old_price\":9.63,\"new_price\":9.63,\"final_price\":9.63,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":4,\"preparation_time\":21,\"delivery_time\":null,\"is_available\":false,\"is_currently_available\":false,\"next_available_at\":\"Tuesday at 09:00\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-13.jpg\"],\"options\":[{\"id\":13,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":37,\"name\":\"Small\",\"price\":0},{\"id\":38,\"name\":\"Medium\",\"price\":1.5},{\"id\":39,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":25,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":26,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":14,\"token\":null,\"name\":\"Drinks Item 4\",\"type\":null,\"description\":\"Seeded test product 4 for Drinks.\",\"image\":null,\"price\":31.67,\"old_price\":31.67,\"new_price\":31.67,\"final_price\":31.67,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":4,\"preparation_time\":29,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-14.jpg\"],\"options\":[{\"id\":14,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":40,\"name\":\"Small\",\"price\":0},{\"id\":41,\"name\":\"Medium\",\"price\":1.5},{\"id\":42,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":27,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":28,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]},{\"id\":6,\"token\":null,\"name\":\"Pizza Item 1\",\"type\":null,\"description\":\"Seeded test product 1 for Pizza.\",\"image\":null,\"price\":27.1,\"old_price\":27.1,\"new_price\":27.1,\"final_price\":27.1,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":3,\"preparation_time\":12,\"delivery_time\":null,\"is_available\":true,\"is_currently_available\":true,\"next_available_at\":\"Now\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-6.jpg\"],\"options\":[{\"id\":6,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":16,\"name\":\"Small\",\"price\":0},{\"id\":17,\"name\":\"Medium\",\"price\":1.5},{\"id\":18,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":11,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":12,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]}],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/products?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/products?page=2\",\"prev\":null,\"next\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/products?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/products?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/products?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/products?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/products\",\"per_page\":15,\"to\":15,\"total\":22}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/store\/products\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/products\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/products\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the product."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":1,\"token\":null,\"name\":\"Burgers Item 1\",\"type\":null,\"description\":\"Seeded test product 1 for Burgers.\",\"image\":null,\"price\":10.21,\"old_price\":10.21,\"new_price\":10.21,\"final_price\":10.21,\"delivery_fee\":null,\"currency\":\"MAD\",\"discount_percentage\":0,\"rating\":0,\"rating_count\":0,\"menu_category_id\":2,\"preparation_time\":31,\"delivery_time\":null,\"is_available\":false,\"is_currently_available\":false,\"next_available_at\":\"Tuesday at 09:00\",\"is_active\":true,\"in_stock\":true,\"delivery\":{\"is_available\":false,\"status\":null,\"zone\":null,\"distance_km\":null,\"predicted_minutes\":null},\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"images\":[\"http:\\\/\\\/127.0.0.1:8000\\\/storage\\\/products\\\/demo-1.jpg\"],\"options\":[{\"id\":1,\"name\":\"Size\",\"is_required\":true,\"max_select\":1,\"values\":[{\"id\":1,\"name\":\"Small\",\"price\":0},{\"id\":2,\"name\":\"Medium\",\"price\":1.5},{\"id\":3,\"name\":\"Large\",\"price\":3}]}],\"supplements\":[{\"id\":1,\"name\":\"Extra Cheese\",\"price\":1.5},{\"id\":2,\"name\":\"Sauce\",\"price\":0.8}],\"availability\":[{\"day\":1,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":2,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":3,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":4,\"from\":\"09:00:00\",\"to\":\"22:00:00\"},{\"day\":5,\"from\":\"09:00:00\",\"to\":\"22:00:00\"}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/store\/offers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/offers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/offers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/offers?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/offers?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/offers?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/offers\",\"per_page\":15,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/store\/offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the offer."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"No query results for model [App\\\\Models\\\\Offer] 17\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of menus for the authenticated store.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menus",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menus"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":2,\"name\":\"Main Menu\",\"is_active\":true,\"start_time\":\"09:00:00\",\"end_time\":\"23:00:00\",\"categories\":[{\"id\":2,\"name\":\"Burgers\",\"is_active\":true,\"menu_id\":2,\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"},{\"id\":4,\"name\":\"Drinks\",\"is_active\":true,\"menu_id\":2,\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"}],\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"},{\"id\":3,\"name\":\"Late Night\",\"is_active\":true,\"start_time\":\"23:00:00\",\"end_time\":\"02:00:00\",\"categories\":[{\"id\":3,\"name\":\"Pizza\",\"is_active\":true,\"menu_id\":3,\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"},{\"id\":5,\"name\":\"Desserts\",\"is_active\":true,\"menu_id\":3,\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"}],\"store\":{\"id\":2,\"name\":\"Conn-O'Kon\"},\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"},{\"id\":1,\"name\":\"Lunch Menu\",\"is_active\":true,\"start_time\":\"12:00:00\",\"end_time\":\"16:00:00\",\"categories\":[{\"id\":1,\"name\":\"Burgers\",\"is_active\":true,\"menu_id\":1,\"created_at\":\"2026-04-07T15:50:22.000000Z\",\"updated_at\":\"2026-04-07T15:50:22.000000Z\"}],\"store\":{\"id\":1,\"name\":\"Glover, Feeney and Morar\"},\"created_at\":\"2026-04-07T15:42:10.000000Z\",\"updated_at\":\"2026-04-07T15:42:10.000000Z\"}],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/menus?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/menus?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/menus?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/menus\",\"per_page\":15,\"to\":3,\"total\":3}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified menu.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menus\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menus\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the menu."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":1,\"name\":\"Lunch Menu\",\"is_active\":true,\"start_time\":\"12:00:00\",\"end_time\":\"16:00:00\",\"categories\":[{\"id\":1,\"name\":\"Burgers\",\"is_active\":true,\"menu_id\":1,\"created_at\":\"2026-04-07T15:50:22.000000Z\",\"updated_at\":\"2026-04-07T15:50:22.000000Z\"}],\"store\":{\"id\":1,\"name\":\"Glover, Feeney and Morar\"},\"created_at\":\"2026-04-07T15:42:10.000000Z\",\"updated_at\":\"2026-04-07T15:42:10.000000Z\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/store\/menu-categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menu-categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menu-categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":2,\"name\":\"Burgers\",\"is_active\":true,\"menu_id\":2,\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"},{\"id\":3,\"name\":\"Pizza\",\"is_active\":true,\"menu_id\":3,\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"},{\"id\":4,\"name\":\"Drinks\",\"is_active\":true,\"menu_id\":2,\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"},{\"id\":5,\"name\":\"Desserts\",\"is_active\":true,\"menu_id\":3,\"created_at\":\"2026-04-08T15:48:17.000000Z\",\"updated_at\":\"2026-04-08T15:48:17.000000Z\"},{\"id\":1,\"name\":\"Burgers\",\"is_active\":true,\"menu_id\":1,\"created_at\":\"2026-04-07T15:50:22.000000Z\",\"updated_at\":\"2026-04-07T15:50:22.000000Z\"}],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/menu-categories?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/menu-categories?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/menu-categories?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/menu-categories\",\"per_page\":15,\"to\":5,\"total\":5}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/store\/menu-categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menu-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menu-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the menu category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":1,\"name\":\"Burgers\",\"is_active\":true,\"menu_id\":1,\"created_at\":\"2026-04-07T15:50:22.000000Z\",\"updated_at\":\"2026-04-07T15:50:22.000000Z\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of store categories.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Fast Food\",\"image\":null,\"type\":null,\"is_active\":true,\"created_at\":\"2026-04-09T15:53:37.000000Z\",\"updated_at\":\"2026-04-09T15:53:37.000000Z\"}],\"links\":{\"first\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/store-categories?page=1\",\"last\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/store-categories?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/store-categories?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/127.0.0.1:8000\\\/api\\\/v1\\\/store\\\/store-categories\",\"per_page\":15,\"to\":1,\"total\":1}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified store category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the store category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":1,\"name\":\"Fast Food\",\"image\":null,\"type\":null,\"is_active\":true,\"created_at\":\"2026-04-09T15:53:37.000000Z\",\"updated_at\":\"2026-04-09T15:53:37.000000Z\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/store\/products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/products",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/products"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"price\":1,\"menu_category_id\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"discount_percentage\":4,\"is_available\":true,\"is_active\":true,\"preparation_time\":66}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/store\/products\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/products\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/products\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the product."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"price\":1,\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"discount_percentage\":4,\"is_available\":true,\"is_active\":false,\"preparation_time\":66}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/store\/products\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/products\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/products\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the product."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/store\/products\/{id}\/images",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/products\/:id\/images",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/products\/:id\/images",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the product."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "image",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a product image.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/products\/:id\/images\/:imageId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/products\/:id\/images\/:imageId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the product."
                                },
                                {
                                    "id": "imageId",
                                    "key": "imageId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/store\/offers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/offers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/offers"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"vmqeopfuudtdsufvyvddq\",\"token\":\"amniihfqcoynlazghdtqt\",\"image\":\"qxbajwbpilpmufinllwlo\",\"redirect_type\":\"product_screen\",\"external_url\":\"http:\\\/\\\/www.schmitt.org\\\/\",\"is_active\":false,\"sort_order\":13,\"start_date\":\"2026-04-20T18:49:36\",\"end_date\":\"2107-05-20\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/store\/offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the offer."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"vmqeopfuudtdsufvyvddq\",\"token\":\"amniihfqcoynlazghdtqt\",\"image\":\"qxbajwbpilpmufinllwlo\",\"redirect_type\":\"menu_screen\",\"external_url\":\"http:\\\/\\\/www.schmitt.org\\\/\",\"is_active\":true,\"sort_order\":13,\"start_date\":\"2026-04-20T18:49:36\",\"end_date\":\"2107-05-20\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/store\/offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the offer."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created menu.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menus",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menus"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"is_active\":true,\"start_time\":\"18:49\",\"end_time\":\"2107-05-20\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the specified menu.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menus\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menus\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the menu."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"is_active\":true,\"start_time\":\"18:49\",\"end_time\":\"2107-05-20\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified menu.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menus\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menus\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the menu."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/store\/menu-categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menu-categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menu-categories"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"store_id\":\"consequatur\",\"menu_id\":\"consequatur\",\"is_active\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/store\/menu-categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menu-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menu-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the menu category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"is_active\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/store\/menu-categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/menu-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/menu-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the menu category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created store category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-categories"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"image\":\"amniihfqcoynlazghdtqt\",\"type\":\"qxbajwbpilpmufinllwlo\",\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the specified store category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the store category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"image\":\"amniihfqcoynlazghdtqt\",\"type\":\"qxbajwbpilpmufinllwlo\",\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified store category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the store category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/store\/store-wallets",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallets",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallets"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/store\/store-wallets",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallets",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallets"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"store_id\":17,\"balance\":11613.31890586}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/store\/store-wallets\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallets\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallets\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the store wallet."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/store\/store-wallets\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallets\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallets\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the store wallet."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"store_id\":17,\"balance\":11613.31890586}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/store\/store-wallets\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallets\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallets\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the store wallet."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/store\/store-wallet-transactions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallet-transactions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallet-transactions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/store\/store-wallet-transactions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallet-transactions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallet-transactions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":17,\"store_id\":17,\"amount\":11613.31890586,\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"type\":\"debit\",\"reference_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/store\/store-wallet-transactions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallet-transactions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallet-transactions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the store wallet transaction."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/store\/store-wallet-transactions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallet-transactions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallet-transactions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the store wallet transaction."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":17,\"store_id\":17,\"amount\":11613.31890586,\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"type\":\"debit\",\"reference_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/store\/store-wallet-transactions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/store-wallet-transactions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/store-wallet-transactions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the store wallet transaction."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/driver-profiles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/driver-profiles"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/driver-profiles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/driver-profiles"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"driver_id\":\"consequatur\",\"license_number\":\"mqeopfuudtdsufvyvddqa\",\"vehicle_type\":\"mniihfqcoynlazghdtqtq\",\"vehicle_plate\":\"xbajwbpilpmufinll\",\"is_verified\":false,\"is_online\":true,\"is_available\":false,\"rating\":5,\"total_deliveries\":39,\"lat\":-89,\"lng\":-180}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/driver-profiles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/driver-profiles\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the driver profile."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/driver-profiles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/driver-profiles\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the driver profile."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"license_number\":\"vmqeopfuudtdsufvyvddq\",\"vehicle_type\":\"amniihfqcoynlazghdtqt\",\"vehicle_plate\":\"qxbajwbpilpmufinl\",\"is_verified\":true,\"is_online\":false,\"is_available\":false,\"rating\":3,\"total_deliveries\":79,\"lat\":-90,\"lng\":-179}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified resource from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/driver-profiles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/driver-profiles\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the driver profile."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/store\/deliveries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/deliveries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/deliveries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"status\": \"assigned\",\n      \"order\": { \"id\": 1 },\n      \"driver\": { \"id\": 5 }\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/store\/deliveries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/deliveries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/deliveries"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order_id\":\"consequatur\",\"driver_id\":\"consequatur\",\"status\":\"cancelled\",\"picked_at\":\"2026-04-20T18:49:36\",\"delivered_at\":\"2026-04-20T18:49:36\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"id\": 1,\n  \"status\": \"assigned\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/store\/deliveries\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/deliveries\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/deliveries\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the delivery."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 1,\n  \"status\": \"assigned\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/store\/deliveries\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/deliveries\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/deliveries\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the delivery."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"assigned\",\"picked_at\":\"2026-04-20T18:49:36\",\"delivered_at\":\"2026-04-20T18:49:36\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 1,\n  \"status\": \"picked_up\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/store\/deliveries\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/deliveries\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/deliveries\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the delivery."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Delivery deleted successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/delivery-fee",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/delivery-fee"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/delivery-fee",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/delivery-fee"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order_id\":\"consequatur\",\"amount\":45}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/delivery-fee\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/delivery-fee\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the delivery fee."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/delivery-fee\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/delivery-fee\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the delivery fee."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount\":73}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified resource from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/delivery-fee\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/delivery-fee\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the delivery fee."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/order-items",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/order-items"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/order-items",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/order-items"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"store_id\":17,\"branch_id\":17,\"table_id\":17,\"address_id\":17,\"store_lat\":-90,\"store_lng\":-179,\"client_lat\":-90,\"client_lng\":-179,\"distance_km\":55,\"duration_minutes\":19,\"delivery_type\":\"bike\",\"store_status\":\"pending\",\"driver_status\":\"assigned\",\"items\":[{\"product_id\":17,\"quantity\":45,\"base_price\":56,\"special_instructions\":\"consequatur\",\"options\":[{\"product_option_id\":17,\"product_option_value_id\":17,\"option_group_name\":\"consequatur\",\"option_name\":\"consequatur\",\"price\":45}]}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/order-items\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/order-items\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order item."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/order-items\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/order-items\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order item."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":17,\"quantity\":45,\"base_price\":56,\"special_instructions\":\"consequatur\",\"options\":[{\"product_option_id\":17,\"product_option_value_id\":17,\"option_group_name\":\"consequatur\",\"option_name\":\"consequatur\",\"price\":45}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified resource from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store\/order-items\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store\/order-items\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order item."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "noauth"
    }
}