{
    "info": {
        "name": "Restaurant & Food Delivery API",
        "description": "Complete restaurant and food delivery platform with menus, orders, reservations, reviews, and delivery tracking",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "item": [
        {
            "name": "\ud83d\udd10 Authentication",
            "description": "Authentication endpoints for user registration and login",
            "item": [
                {
                    "name": "Register",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Test User\",\n    \"email\": \"test@example.com\",\n    \"password\": \"password123\"\n}"
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/auth/register",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "auth",
                                "register"
                            ]
                        }
                    }
                },
                {
                    "name": "Login",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"michael@foodlover.com\",\n    \"password\": \"password123\"\n}"
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/auth/login",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "auth",
                                "login"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Categories",
            "description": "Food categories and menu sections",
            "item": [
                {
                    "name": "Get All Categories",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/categories",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "categories"
                            ]
                        },
                        "description": "Retrieve a paginated list of all categories"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"Appetizers\",\n            \"slug\": \"appetizers\",\n            \"description\": \"Starters and small bites\",\n            \"icon\": \"\\ud83e\\udd57\",\n            \"items_count\": 24\n        },\n        {\n            \"name\": \"Appetizers\",\n            \"slug\": \"appetizers\",\n            \"description\": \"Starters and small bites\",\n            \"icon\": \"\\ud83e\\udd57\",\n            \"items_count\": 24\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Categorie by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/categories/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "categories",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single categorie by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Appetizers\",\n    \"slug\": \"appetizers\",\n    \"description\": \"Starters and small bites\",\n    \"icon\": \"\\ud83e\\udd57\",\n    \"items_count\": 24\n}"
                        }
                    ]
                },
                {
                    "name": "Create Categorie",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Appetizers\",\n    \"slug\": \"appetizers\",\n    \"description\": \"Starters and small bites\",\n    \"icon\": \"\\ud83e\\udd57\",\n    \"items_count\": 24\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/categories",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "categories"
                            ]
                        },
                        "description": "Create a new categorie"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Appetizers\",\n    \"slug\": \"appetizers\",\n    \"description\": \"Starters and small bites\",\n    \"icon\": \"\\ud83e\\udd57\",\n    \"items_count\": 24\n}"
                        }
                    ]
                },
                {
                    "name": "Update Categorie",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Appetizers\",\n    \"slug\": \"appetizers\",\n    \"description\": \"Starters and small bites\",\n    \"icon\": \"\\ud83e\\udd57\",\n    \"items_count\": 24\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/categories/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "categories",
                                "1"
                            ]
                        },
                        "description": "Update an existing categorie"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Appetizers\",\n    \"slug\": \"appetizers\",\n    \"description\": \"Starters and small bites\",\n    \"icon\": \"\\ud83e\\udd57\",\n    \"items_count\": 24\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Categorie",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/categories/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "categories",
                                "1"
                            ]
                        },
                        "description": "Delete a categorie by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Categorie deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Delivery-addresses",
            "description": "User delivery addresses - user-specific",
            "item": [
                {
                    "name": "Get All Delivery-addresses",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/delivery-addresses",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "delivery-addresses"
                            ]
                        },
                        "description": "Retrieve a paginated list of all delivery-addresses"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Michael Johnson\",\n            \"label\": \"Home\",\n            \"street_address\": \"789 Park Avenue\",\n            \"apartment\": \"Apt 15B\",\n            \"city\": \"New York\",\n            \"postal_code\": \"10021\",\n            \"phone\": \"+1-555-0201\",\n            \"delivery_instructions\": \"Ring doorbell twice\",\n            \"is_default\": true\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Michael Johnson\",\n            \"label\": \"Home\",\n            \"street_address\": \"789 Park Avenue\",\n            \"apartment\": \"Apt 15B\",\n            \"city\": \"New York\",\n            \"postal_code\": \"10021\",\n            \"phone\": \"+1-555-0201\",\n            \"delivery_instructions\": \"Ring doorbell twice\",\n            \"is_default\": true\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Delivery-addresse by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/delivery-addresses/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "delivery-addresses",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single delivery-addresse by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"label\": \"Home\",\n    \"street_address\": \"789 Park Avenue\",\n    \"apartment\": \"Apt 15B\",\n    \"city\": \"New York\",\n    \"postal_code\": \"10021\",\n    \"phone\": \"+1-555-0201\",\n    \"delivery_instructions\": \"Ring doorbell twice\",\n    \"is_default\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Create Delivery-addresse",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"label\": \"Home\",\n    \"street_address\": \"789 Park Avenue\",\n    \"apartment\": \"Apt 15B\",\n    \"city\": \"New York\",\n    \"postal_code\": \"10021\",\n    \"phone\": \"+1-555-0201\",\n    \"delivery_instructions\": \"Ring doorbell twice\",\n    \"is_default\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/delivery-addresses",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "delivery-addresses"
                            ]
                        },
                        "description": "Create a new delivery-addresse"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"label\": \"Home\",\n    \"street_address\": \"789 Park Avenue\",\n    \"apartment\": \"Apt 15B\",\n    \"city\": \"New York\",\n    \"postal_code\": \"10021\",\n    \"phone\": \"+1-555-0201\",\n    \"delivery_instructions\": \"Ring doorbell twice\",\n    \"is_default\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Update Delivery-addresse",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"label\": \"Home\",\n    \"street_address\": \"789 Park Avenue\",\n    \"apartment\": \"Apt 15B\",\n    \"city\": \"New York\",\n    \"postal_code\": \"10021\",\n    \"phone\": \"+1-555-0201\",\n    \"delivery_instructions\": \"Ring doorbell twice\",\n    \"is_default\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/delivery-addresses/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "delivery-addresses",
                                "1"
                            ]
                        },
                        "description": "Update an existing delivery-addresse"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"label\": \"Home\",\n    \"street_address\": \"789 Park Avenue\",\n    \"apartment\": \"Apt 15B\",\n    \"city\": \"New York\",\n    \"postal_code\": \"10021\",\n    \"phone\": \"+1-555-0201\",\n    \"delivery_instructions\": \"Ring doorbell twice\",\n    \"is_default\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Delivery-addresse",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/delivery-addresses/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "delivery-addresses",
                                "1"
                            ]
                        },
                        "description": "Delete a delivery-addresse by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Delivery-addresse deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Menu-items",
            "description": "Restaurant menu items and dishes",
            "item": [
                {
                    "name": "Get All Menu-items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/menu-items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "menu-items"
                            ]
                        },
                        "description": "Retrieve a paginated list of all menu-items"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"category_id\": 3,\n            \"category_name\": \"Pizza\",\n            \"name\": \"Margherita Pizza\",\n            \"slug\": \"margherita-pizza\",\n            \"description\": \"Classic pizza with San Marzano tomatoes, fresh mozzarella, and basil\",\n            \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=food1\",\n            \"price\": 14.9900000000000002131628207280300557613372802734375,\n            \"original_price\": null,\n            \"ingredients\": [\n                \"Tomato Sauce\",\n                \"Mozzarella\",\n                \"Basil\",\n                \"Olive Oil\"\n            ],\n            \"allergens\": [\n                \"Gluten\",\n                \"Dairy\"\n            ],\n            \"calories\": 850,\n            \"is_vegetarian\": true,\n            \"is_vegan\": false,\n            \"is_gluten_free\": false,\n            \"is_spicy\": false,\n            \"spice_level\": 0,\n            \"preparation_time\": \"15-20 min\",\n            \"is_available\": true,\n            \"is_popular\": true,\n            \"rating\": 4.79999999999999982236431605997495353221893310546875,\n            \"reviews_count\": 156\n        },\n        {\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"category_id\": 3,\n            \"category_name\": \"Pizza\",\n            \"name\": \"Margherita Pizza\",\n            \"slug\": \"margherita-pizza\",\n            \"description\": \"Classic pizza with San Marzano tomatoes, fresh mozzarella, and basil\",\n            \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=food1\",\n            \"price\": 14.9900000000000002131628207280300557613372802734375,\n            \"original_price\": null,\n            \"ingredients\": [\n                \"Tomato Sauce\",\n                \"Mozzarella\",\n                \"Basil\",\n                \"Olive Oil\"\n            ],\n            \"allergens\": [\n                \"Gluten\",\n                \"Dairy\"\n            ],\n            \"calories\": 850,\n            \"is_vegetarian\": true,\n            \"is_vegan\": false,\n            \"is_gluten_free\": false,\n            \"is_spicy\": false,\n            \"spice_level\": 0,\n            \"preparation_time\": \"15-20 min\",\n            \"is_available\": true,\n            \"is_popular\": true,\n            \"rating\": 4.79999999999999982236431605997495353221893310546875,\n            \"reviews_count\": 156\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Menu-item by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/menu-items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "menu-items",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single menu-item by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"category_id\": 3,\n    \"category_name\": \"Pizza\",\n    \"name\": \"Margherita Pizza\",\n    \"slug\": \"margherita-pizza\",\n    \"description\": \"Classic pizza with San Marzano tomatoes, fresh mozzarella, and basil\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=food1\",\n    \"price\": 14.9900000000000002131628207280300557613372802734375,\n    \"original_price\": null,\n    \"ingredients\": [\n        \"Tomato Sauce\",\n        \"Mozzarella\",\n        \"Basil\",\n        \"Olive Oil\"\n    ],\n    \"allergens\": [\n        \"Gluten\",\n        \"Dairy\"\n    ],\n    \"calories\": 850,\n    \"is_vegetarian\": true,\n    \"is_vegan\": false,\n    \"is_gluten_free\": false,\n    \"is_spicy\": false,\n    \"spice_level\": 0,\n    \"preparation_time\": \"15-20 min\",\n    \"is_available\": true,\n    \"is_popular\": true,\n    \"rating\": 4.79999999999999982236431605997495353221893310546875,\n    \"reviews_count\": 156\n}"
                        }
                    ]
                },
                {
                    "name": "Create Menu-item",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"category_id\": 3,\n    \"category_name\": \"Pizza\",\n    \"name\": \"Margherita Pizza\",\n    \"slug\": \"margherita-pizza\",\n    \"description\": \"Classic pizza with San Marzano tomatoes, fresh mozzarella, and basil\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=food1\",\n    \"price\": 14.9900000000000002131628207280300557613372802734375,\n    \"original_price\": null,\n    \"ingredients\": [\n        \"Tomato Sauce\",\n        \"Mozzarella\",\n        \"Basil\",\n        \"Olive Oil\"\n    ],\n    \"allergens\": [\n        \"Gluten\",\n        \"Dairy\"\n    ],\n    \"calories\": 850,\n    \"is_vegetarian\": true,\n    \"is_vegan\": false,\n    \"is_gluten_free\": false,\n    \"is_spicy\": false,\n    \"spice_level\": 0,\n    \"preparation_time\": \"15-20 min\",\n    \"is_available\": true,\n    \"is_popular\": true,\n    \"rating\": 4.79999999999999982236431605997495353221893310546875,\n    \"reviews_count\": 156\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/menu-items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "menu-items"
                            ]
                        },
                        "description": "Create a new menu-item"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"category_id\": 3,\n    \"category_name\": \"Pizza\",\n    \"name\": \"Margherita Pizza\",\n    \"slug\": \"margherita-pizza\",\n    \"description\": \"Classic pizza with San Marzano tomatoes, fresh mozzarella, and basil\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=food1\",\n    \"price\": 14.9900000000000002131628207280300557613372802734375,\n    \"original_price\": null,\n    \"ingredients\": [\n        \"Tomato Sauce\",\n        \"Mozzarella\",\n        \"Basil\",\n        \"Olive Oil\"\n    ],\n    \"allergens\": [\n        \"Gluten\",\n        \"Dairy\"\n    ],\n    \"calories\": 850,\n    \"is_vegetarian\": true,\n    \"is_vegan\": false,\n    \"is_gluten_free\": false,\n    \"is_spicy\": false,\n    \"spice_level\": 0,\n    \"preparation_time\": \"15-20 min\",\n    \"is_available\": true,\n    \"is_popular\": true,\n    \"rating\": 4.79999999999999982236431605997495353221893310546875,\n    \"reviews_count\": 156\n}"
                        }
                    ]
                },
                {
                    "name": "Update Menu-item",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"category_id\": 3,\n    \"category_name\": \"Pizza\",\n    \"name\": \"Margherita Pizza\",\n    \"slug\": \"margherita-pizza\",\n    \"description\": \"Classic pizza with San Marzano tomatoes, fresh mozzarella, and basil\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=food1\",\n    \"price\": 14.9900000000000002131628207280300557613372802734375,\n    \"original_price\": null,\n    \"ingredients\": [\n        \"Tomato Sauce\",\n        \"Mozzarella\",\n        \"Basil\",\n        \"Olive Oil\"\n    ],\n    \"allergens\": [\n        \"Gluten\",\n        \"Dairy\"\n    ],\n    \"calories\": 850,\n    \"is_vegetarian\": true,\n    \"is_vegan\": false,\n    \"is_gluten_free\": false,\n    \"is_spicy\": false,\n    \"spice_level\": 0,\n    \"preparation_time\": \"15-20 min\",\n    \"is_available\": true,\n    \"is_popular\": true,\n    \"rating\": 4.79999999999999982236431605997495353221893310546875,\n    \"reviews_count\": 156\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/menu-items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "menu-items",
                                "1"
                            ]
                        },
                        "description": "Update an existing menu-item"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"category_id\": 3,\n    \"category_name\": \"Pizza\",\n    \"name\": \"Margherita Pizza\",\n    \"slug\": \"margherita-pizza\",\n    \"description\": \"Classic pizza with San Marzano tomatoes, fresh mozzarella, and basil\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=food1\",\n    \"price\": 14.9900000000000002131628207280300557613372802734375,\n    \"original_price\": null,\n    \"ingredients\": [\n        \"Tomato Sauce\",\n        \"Mozzarella\",\n        \"Basil\",\n        \"Olive Oil\"\n    ],\n    \"allergens\": [\n        \"Gluten\",\n        \"Dairy\"\n    ],\n    \"calories\": 850,\n    \"is_vegetarian\": true,\n    \"is_vegan\": false,\n    \"is_gluten_free\": false,\n    \"is_spicy\": false,\n    \"spice_level\": 0,\n    \"preparation_time\": \"15-20 min\",\n    \"is_available\": true,\n    \"is_popular\": true,\n    \"rating\": 4.79999999999999982236431605997495353221893310546875,\n    \"reviews_count\": 156\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Menu-item",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/menu-items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "menu-items",
                                "1"
                            ]
                        },
                        "description": "Delete a menu-item by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Menu-item deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Orders",
            "description": "Customer food orders - user-specific",
            "item": [
                {
                    "name": "Get All Orders",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/orders",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "orders"
                            ]
                        },
                        "description": "Retrieve a paginated list of all orders"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"order_number\": \"ORD-2024-001234\",\n            \"user_id\": 1,\n            \"user_name\": \"Michael Johnson\",\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"items\": [\n                {\n                    \"name\": \"Margherita Pizza\",\n                    \"quantity\": 1,\n                    \"price\": 14.9900000000000002131628207280300557613372802734375\n                },\n                {\n                    \"name\": \"Spaghetti Carbonara\",\n                    \"quantity\": 1,\n                    \"price\": 16.989999999999998436805981327779591083526611328125\n                }\n            ],\n            \"subtotal\": 31.980000000000000426325641456060111522674560546875,\n            \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n            \"tax\": 3.20000000000000017763568394002504646778106689453125,\n            \"discount\": 0,\n            \"total\": 39.1700000000000017053025658242404460906982421875,\n            \"delivery_address\": {\n                \"street\": \"789 Park Avenue, Apt 15B\",\n                \"city\": \"New York\",\n                \"postal_code\": \"10021\"\n            },\n            \"payment_method\": \"Credit Card\",\n            \"status\": \"Delivered\",\n            \"delivery_type\": \"Delivery\",\n            \"special_instructions\": \"Please ring the doorbell\",\n            \"estimated_delivery_time\": \"2024-01-28T19:30:00Z\",\n            \"created_at\": \"2024-01-28T18:45:00Z\"\n        },\n        {\n            \"order_number\": \"ORD-2024-001234\",\n            \"user_id\": 1,\n            \"user_name\": \"Michael Johnson\",\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"items\": [\n                {\n                    \"name\": \"Margherita Pizza\",\n                    \"quantity\": 1,\n                    \"price\": 14.9900000000000002131628207280300557613372802734375\n                },\n                {\n                    \"name\": \"Spaghetti Carbonara\",\n                    \"quantity\": 1,\n                    \"price\": 16.989999999999998436805981327779591083526611328125\n                }\n            ],\n            \"subtotal\": 31.980000000000000426325641456060111522674560546875,\n            \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n            \"tax\": 3.20000000000000017763568394002504646778106689453125,\n            \"discount\": 0,\n            \"total\": 39.1700000000000017053025658242404460906982421875,\n            \"delivery_address\": {\n                \"street\": \"789 Park Avenue, Apt 15B\",\n                \"city\": \"New York\",\n                \"postal_code\": \"10021\"\n            },\n            \"payment_method\": \"Credit Card\",\n            \"status\": \"Delivered\",\n            \"delivery_type\": \"Delivery\",\n            \"special_instructions\": \"Please ring the doorbell\",\n            \"estimated_delivery_time\": \"2024-01-28T19:30:00Z\",\n            \"created_at\": \"2024-01-28T18:45:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Order by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/orders/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "orders",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single order by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"order_number\": \"ORD-2024-001234\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"items\": [\n        {\n            \"name\": \"Margherita Pizza\",\n            \"quantity\": 1,\n            \"price\": 14.9900000000000002131628207280300557613372802734375\n        },\n        {\n            \"name\": \"Spaghetti Carbonara\",\n            \"quantity\": 1,\n            \"price\": 16.989999999999998436805981327779591083526611328125\n        }\n    ],\n    \"subtotal\": 31.980000000000000426325641456060111522674560546875,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"tax\": 3.20000000000000017763568394002504646778106689453125,\n    \"discount\": 0,\n    \"total\": 39.1700000000000017053025658242404460906982421875,\n    \"delivery_address\": {\n        \"street\": \"789 Park Avenue, Apt 15B\",\n        \"city\": \"New York\",\n        \"postal_code\": \"10021\"\n    },\n    \"payment_method\": \"Credit Card\",\n    \"status\": \"Delivered\",\n    \"delivery_type\": \"Delivery\",\n    \"special_instructions\": \"Please ring the doorbell\",\n    \"estimated_delivery_time\": \"2024-01-28T19:30:00Z\",\n    \"created_at\": \"2024-01-28T18:45:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Order",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"order_number\": \"ORD-2024-001234\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"items\": [\n        {\n            \"name\": \"Margherita Pizza\",\n            \"quantity\": 1,\n            \"price\": 14.9900000000000002131628207280300557613372802734375\n        },\n        {\n            \"name\": \"Spaghetti Carbonara\",\n            \"quantity\": 1,\n            \"price\": 16.989999999999998436805981327779591083526611328125\n        }\n    ],\n    \"subtotal\": 31.980000000000000426325641456060111522674560546875,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"tax\": 3.20000000000000017763568394002504646778106689453125,\n    \"discount\": 0,\n    \"total\": 39.1700000000000017053025658242404460906982421875,\n    \"delivery_address\": {\n        \"street\": \"789 Park Avenue, Apt 15B\",\n        \"city\": \"New York\",\n        \"postal_code\": \"10021\"\n    },\n    \"payment_method\": \"Credit Card\",\n    \"status\": \"Delivered\",\n    \"delivery_type\": \"Delivery\",\n    \"special_instructions\": \"Please ring the doorbell\",\n    \"estimated_delivery_time\": \"2024-01-28T19:30:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/orders",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "orders"
                            ]
                        },
                        "description": "Create a new order"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"order_number\": \"ORD-2024-001234\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"items\": [\n        {\n            \"name\": \"Margherita Pizza\",\n            \"quantity\": 1,\n            \"price\": 14.9900000000000002131628207280300557613372802734375\n        },\n        {\n            \"name\": \"Spaghetti Carbonara\",\n            \"quantity\": 1,\n            \"price\": 16.989999999999998436805981327779591083526611328125\n        }\n    ],\n    \"subtotal\": 31.980000000000000426325641456060111522674560546875,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"tax\": 3.20000000000000017763568394002504646778106689453125,\n    \"discount\": 0,\n    \"total\": 39.1700000000000017053025658242404460906982421875,\n    \"delivery_address\": {\n        \"street\": \"789 Park Avenue, Apt 15B\",\n        \"city\": \"New York\",\n        \"postal_code\": \"10021\"\n    },\n    \"payment_method\": \"Credit Card\",\n    \"status\": \"Delivered\",\n    \"delivery_type\": \"Delivery\",\n    \"special_instructions\": \"Please ring the doorbell\",\n    \"estimated_delivery_time\": \"2024-01-28T19:30:00Z\",\n    \"created_at\": \"2024-01-28T18:45:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Order",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"order_number\": \"ORD-2024-001234\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"items\": [\n        {\n            \"name\": \"Margherita Pizza\",\n            \"quantity\": 1,\n            \"price\": 14.9900000000000002131628207280300557613372802734375\n        },\n        {\n            \"name\": \"Spaghetti Carbonara\",\n            \"quantity\": 1,\n            \"price\": 16.989999999999998436805981327779591083526611328125\n        }\n    ],\n    \"subtotal\": 31.980000000000000426325641456060111522674560546875,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"tax\": 3.20000000000000017763568394002504646778106689453125,\n    \"discount\": 0,\n    \"total\": 39.1700000000000017053025658242404460906982421875,\n    \"delivery_address\": {\n        \"street\": \"789 Park Avenue, Apt 15B\",\n        \"city\": \"New York\",\n        \"postal_code\": \"10021\"\n    },\n    \"payment_method\": \"Credit Card\",\n    \"status\": \"Delivered\",\n    \"delivery_type\": \"Delivery\",\n    \"special_instructions\": \"Please ring the doorbell\",\n    \"estimated_delivery_time\": \"2024-01-28T19:30:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/orders/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "orders",
                                "1"
                            ]
                        },
                        "description": "Update an existing order"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"order_number\": \"ORD-2024-001234\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"items\": [\n        {\n            \"name\": \"Margherita Pizza\",\n            \"quantity\": 1,\n            \"price\": 14.9900000000000002131628207280300557613372802734375\n        },\n        {\n            \"name\": \"Spaghetti Carbonara\",\n            \"quantity\": 1,\n            \"price\": 16.989999999999998436805981327779591083526611328125\n        }\n    ],\n    \"subtotal\": 31.980000000000000426325641456060111522674560546875,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"tax\": 3.20000000000000017763568394002504646778106689453125,\n    \"discount\": 0,\n    \"total\": 39.1700000000000017053025658242404460906982421875,\n    \"delivery_address\": {\n        \"street\": \"789 Park Avenue, Apt 15B\",\n        \"city\": \"New York\",\n        \"postal_code\": \"10021\"\n    },\n    \"payment_method\": \"Credit Card\",\n    \"status\": \"Delivered\",\n    \"delivery_type\": \"Delivery\",\n    \"special_instructions\": \"Please ring the doorbell\",\n    \"estimated_delivery_time\": \"2024-01-28T19:30:00Z\",\n    \"created_at\": \"2024-01-28T18:45:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Order",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/orders/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "orders",
                                "1"
                            ]
                        },
                        "description": "Delete a order by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Order deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Reservations",
            "description": "Table reservations - user-specific",
            "item": [
                {
                    "name": "Get All Reservations",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reservations",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reservations"
                            ]
                        },
                        "description": "Retrieve a paginated list of all reservations"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"reservation_number\": \"RES-2024-4567\",\n            \"user_id\": 1,\n            \"user_name\": \"Michael Johnson\",\n            \"user_phone\": \"+1-555-0201\",\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"date\": \"2024-02-05\",\n            \"time\": \"19:30\",\n            \"guests_count\": 4,\n            \"table_number\": \"T-12\",\n            \"status\": \"Confirmed\",\n            \"special_requests\": \"Window seat if possible\",\n            \"created_at\": \"2024-01-25T14:30:00Z\"\n        },\n        {\n            \"reservation_number\": \"RES-2024-4567\",\n            \"user_id\": 1,\n            \"user_name\": \"Michael Johnson\",\n            \"user_phone\": \"+1-555-0201\",\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"date\": \"2024-02-05\",\n            \"time\": \"19:30\",\n            \"guests_count\": 4,\n            \"table_number\": \"T-12\",\n            \"status\": \"Confirmed\",\n            \"special_requests\": \"Window seat if possible\",\n            \"created_at\": \"2024-01-25T14:30:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Reservation by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reservations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reservations",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single reservation by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"reservation_number\": \"RES-2024-4567\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_phone\": \"+1-555-0201\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"date\": \"2024-02-05\",\n    \"time\": \"19:30\",\n    \"guests_count\": 4,\n    \"table_number\": \"T-12\",\n    \"status\": \"Confirmed\",\n    \"special_requests\": \"Window seat if possible\",\n    \"created_at\": \"2024-01-25T14:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Reservation",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"reservation_number\": \"RES-2024-4567\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_phone\": \"+1-555-0201\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"date\": \"2024-02-05\",\n    \"time\": \"19:30\",\n    \"guests_count\": 4,\n    \"table_number\": \"T-12\",\n    \"status\": \"Confirmed\",\n    \"special_requests\": \"Window seat if possible\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reservations",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reservations"
                            ]
                        },
                        "description": "Create a new reservation"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"reservation_number\": \"RES-2024-4567\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_phone\": \"+1-555-0201\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"date\": \"2024-02-05\",\n    \"time\": \"19:30\",\n    \"guests_count\": 4,\n    \"table_number\": \"T-12\",\n    \"status\": \"Confirmed\",\n    \"special_requests\": \"Window seat if possible\",\n    \"created_at\": \"2024-01-25T14:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Reservation",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"reservation_number\": \"RES-2024-4567\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_phone\": \"+1-555-0201\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"date\": \"2024-02-05\",\n    \"time\": \"19:30\",\n    \"guests_count\": 4,\n    \"table_number\": \"T-12\",\n    \"status\": \"Confirmed\",\n    \"special_requests\": \"Window seat if possible\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reservations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reservations",
                                "1"
                            ]
                        },
                        "description": "Update an existing reservation"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"reservation_number\": \"RES-2024-4567\",\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_phone\": \"+1-555-0201\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"date\": \"2024-02-05\",\n    \"time\": \"19:30\",\n    \"guests_count\": 4,\n    \"table_number\": \"T-12\",\n    \"status\": \"Confirmed\",\n    \"special_requests\": \"Window seat if possible\",\n    \"created_at\": \"2024-01-25T14:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Reservation",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reservations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reservations",
                                "1"
                            ]
                        },
                        "description": "Delete a reservation by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Reservation deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Restaurants",
            "description": "Restaurant listings and information",
            "item": [
                {
                    "name": "Get All Restaurants",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/restaurants",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "restaurants"
                            ]
                        },
                        "description": "Retrieve a paginated list of all restaurants"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"Bella Italia\",\n            \"slug\": \"bella-italia\",\n            \"description\": \"Authentic Italian cuisine with homemade pasta and wood-fired pizza\",\n            \"cuisine_type\": \"Italian\",\n            \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=rest1\",\n            \"cover_image\": \"https:\\/\\/picsum.photos\\/800\\/400?random=rest1\",\n            \"address\": \"123 Main Street\",\n            \"city\": \"New York\",\n            \"phone\": \"+1-555-1001\",\n            \"email\": \"info@bellaitalia.com\",\n            \"website\": \"https:\\/\\/bellaitalia.com\",\n            \"rating\": 4.70000000000000017763568394002504646778106689453125,\n            \"reviews_count\": 342,\n            \"price_range\": \"$$\",\n            \"opening_hours\": {\n                \"monday\": \"11:00-22:00\",\n                \"tuesday\": \"11:00-22:00\",\n                \"wednesday\": \"11:00-22:00\",\n                \"thursday\": \"11:00-23:00\",\n                \"friday\": \"11:00-23:00\",\n                \"saturday\": \"12:00-23:00\",\n                \"sunday\": \"12:00-21:00\"\n            },\n            \"delivery_time\": \"30-45 min\",\n            \"minimum_order\": 15,\n            \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n            \"is_open\": true,\n            \"accepts_reservations\": true\n        },\n        {\n            \"name\": \"Bella Italia\",\n            \"slug\": \"bella-italia\",\n            \"description\": \"Authentic Italian cuisine with homemade pasta and wood-fired pizza\",\n            \"cuisine_type\": \"Italian\",\n            \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=rest1\",\n            \"cover_image\": \"https:\\/\\/picsum.photos\\/800\\/400?random=rest1\",\n            \"address\": \"123 Main Street\",\n            \"city\": \"New York\",\n            \"phone\": \"+1-555-1001\",\n            \"email\": \"info@bellaitalia.com\",\n            \"website\": \"https:\\/\\/bellaitalia.com\",\n            \"rating\": 4.70000000000000017763568394002504646778106689453125,\n            \"reviews_count\": 342,\n            \"price_range\": \"$$\",\n            \"opening_hours\": {\n                \"monday\": \"11:00-22:00\",\n                \"tuesday\": \"11:00-22:00\",\n                \"wednesday\": \"11:00-22:00\",\n                \"thursday\": \"11:00-23:00\",\n                \"friday\": \"11:00-23:00\",\n                \"saturday\": \"12:00-23:00\",\n                \"sunday\": \"12:00-21:00\"\n            },\n            \"delivery_time\": \"30-45 min\",\n            \"minimum_order\": 15,\n            \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n            \"is_open\": true,\n            \"accepts_reservations\": true\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Restaurant by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/restaurants/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "restaurants",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single restaurant by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Bella Italia\",\n    \"slug\": \"bella-italia\",\n    \"description\": \"Authentic Italian cuisine with homemade pasta and wood-fired pizza\",\n    \"cuisine_type\": \"Italian\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=rest1\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/800\\/400?random=rest1\",\n    \"address\": \"123 Main Street\",\n    \"city\": \"New York\",\n    \"phone\": \"+1-555-1001\",\n    \"email\": \"info@bellaitalia.com\",\n    \"website\": \"https:\\/\\/bellaitalia.com\",\n    \"rating\": 4.70000000000000017763568394002504646778106689453125,\n    \"reviews_count\": 342,\n    \"price_range\": \"$$\",\n    \"opening_hours\": {\n        \"monday\": \"11:00-22:00\",\n        \"tuesday\": \"11:00-22:00\",\n        \"wednesday\": \"11:00-22:00\",\n        \"thursday\": \"11:00-23:00\",\n        \"friday\": \"11:00-23:00\",\n        \"saturday\": \"12:00-23:00\",\n        \"sunday\": \"12:00-21:00\"\n    },\n    \"delivery_time\": \"30-45 min\",\n    \"minimum_order\": 15,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"is_open\": true,\n    \"accepts_reservations\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Create Restaurant",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Bella Italia\",\n    \"slug\": \"bella-italia\",\n    \"description\": \"Authentic Italian cuisine with homemade pasta and wood-fired pizza\",\n    \"cuisine_type\": \"Italian\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=rest1\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/800\\/400?random=rest1\",\n    \"address\": \"123 Main Street\",\n    \"city\": \"New York\",\n    \"phone\": \"+1-555-1001\",\n    \"email\": \"info@bellaitalia.com\",\n    \"website\": \"https:\\/\\/bellaitalia.com\",\n    \"rating\": 4.70000000000000017763568394002504646778106689453125,\n    \"reviews_count\": 342,\n    \"price_range\": \"$$\",\n    \"opening_hours\": {\n        \"monday\": \"11:00-22:00\",\n        \"tuesday\": \"11:00-22:00\",\n        \"wednesday\": \"11:00-22:00\",\n        \"thursday\": \"11:00-23:00\",\n        \"friday\": \"11:00-23:00\",\n        \"saturday\": \"12:00-23:00\",\n        \"sunday\": \"12:00-21:00\"\n    },\n    \"delivery_time\": \"30-45 min\",\n    \"minimum_order\": 15,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"is_open\": true,\n    \"accepts_reservations\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/restaurants",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "restaurants"
                            ]
                        },
                        "description": "Create a new restaurant"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Bella Italia\",\n    \"slug\": \"bella-italia\",\n    \"description\": \"Authentic Italian cuisine with homemade pasta and wood-fired pizza\",\n    \"cuisine_type\": \"Italian\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=rest1\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/800\\/400?random=rest1\",\n    \"address\": \"123 Main Street\",\n    \"city\": \"New York\",\n    \"phone\": \"+1-555-1001\",\n    \"email\": \"info@bellaitalia.com\",\n    \"website\": \"https:\\/\\/bellaitalia.com\",\n    \"rating\": 4.70000000000000017763568394002504646778106689453125,\n    \"reviews_count\": 342,\n    \"price_range\": \"$$\",\n    \"opening_hours\": {\n        \"monday\": \"11:00-22:00\",\n        \"tuesday\": \"11:00-22:00\",\n        \"wednesday\": \"11:00-22:00\",\n        \"thursday\": \"11:00-23:00\",\n        \"friday\": \"11:00-23:00\",\n        \"saturday\": \"12:00-23:00\",\n        \"sunday\": \"12:00-21:00\"\n    },\n    \"delivery_time\": \"30-45 min\",\n    \"minimum_order\": 15,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"is_open\": true,\n    \"accepts_reservations\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Update Restaurant",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Bella Italia\",\n    \"slug\": \"bella-italia\",\n    \"description\": \"Authentic Italian cuisine with homemade pasta and wood-fired pizza\",\n    \"cuisine_type\": \"Italian\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=rest1\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/800\\/400?random=rest1\",\n    \"address\": \"123 Main Street\",\n    \"city\": \"New York\",\n    \"phone\": \"+1-555-1001\",\n    \"email\": \"info@bellaitalia.com\",\n    \"website\": \"https:\\/\\/bellaitalia.com\",\n    \"rating\": 4.70000000000000017763568394002504646778106689453125,\n    \"reviews_count\": 342,\n    \"price_range\": \"$$\",\n    \"opening_hours\": {\n        \"monday\": \"11:00-22:00\",\n        \"tuesday\": \"11:00-22:00\",\n        \"wednesday\": \"11:00-22:00\",\n        \"thursday\": \"11:00-23:00\",\n        \"friday\": \"11:00-23:00\",\n        \"saturday\": \"12:00-23:00\",\n        \"sunday\": \"12:00-21:00\"\n    },\n    \"delivery_time\": \"30-45 min\",\n    \"minimum_order\": 15,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"is_open\": true,\n    \"accepts_reservations\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/restaurants/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "restaurants",
                                "1"
                            ]
                        },
                        "description": "Update an existing restaurant"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Bella Italia\",\n    \"slug\": \"bella-italia\",\n    \"description\": \"Authentic Italian cuisine with homemade pasta and wood-fired pizza\",\n    \"cuisine_type\": \"Italian\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=rest1\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/800\\/400?random=rest1\",\n    \"address\": \"123 Main Street\",\n    \"city\": \"New York\",\n    \"phone\": \"+1-555-1001\",\n    \"email\": \"info@bellaitalia.com\",\n    \"website\": \"https:\\/\\/bellaitalia.com\",\n    \"rating\": 4.70000000000000017763568394002504646778106689453125,\n    \"reviews_count\": 342,\n    \"price_range\": \"$$\",\n    \"opening_hours\": {\n        \"monday\": \"11:00-22:00\",\n        \"tuesday\": \"11:00-22:00\",\n        \"wednesday\": \"11:00-22:00\",\n        \"thursday\": \"11:00-23:00\",\n        \"friday\": \"11:00-23:00\",\n        \"saturday\": \"12:00-23:00\",\n        \"sunday\": \"12:00-21:00\"\n    },\n    \"delivery_time\": \"30-45 min\",\n    \"minimum_order\": 15,\n    \"delivery_fee\": 3.9900000000000002131628207280300557613372802734375,\n    \"is_open\": true,\n    \"accepts_reservations\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Restaurant",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/restaurants/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "restaurants",
                                "1"
                            ]
                        },
                        "description": "Delete a restaurant by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Restaurant deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Reviews",
            "description": "Restaurant and menu item reviews",
            "item": [
                {
                    "name": "Get All Reviews",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reviews",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reviews"
                            ]
                        },
                        "description": "Retrieve a paginated list of all reviews"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Michael Johnson\",\n            \"user_avatar\": \"https:\\/\\/i.pravatar.cc\\/50?img=12\",\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"menu_item_id\": 1,\n            \"menu_item_name\": \"Margherita Pizza\",\n            \"rating\": 5,\n            \"title\": \"Best pizza in town!\",\n            \"comment\": \"Absolutely delicious! The crust was perfect and ingredients were fresh. Will definitely order again.\",\n            \"food_quality\": 5,\n            \"service_quality\": 5,\n            \"delivery_speed\": 4,\n            \"value_for_money\": 5,\n            \"images\": [\n                \"https:\\/\\/picsum.photos\\/400\\/300?random=review1\"\n            ],\n            \"verified_order\": true,\n            \"helpful_count\": 23,\n            \"created_at\": \"2024-01-20T10:30:00Z\"\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Michael Johnson\",\n            \"user_avatar\": \"https:\\/\\/i.pravatar.cc\\/50?img=12\",\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"menu_item_id\": 1,\n            \"menu_item_name\": \"Margherita Pizza\",\n            \"rating\": 5,\n            \"title\": \"Best pizza in town!\",\n            \"comment\": \"Absolutely delicious! The crust was perfect and ingredients were fresh. Will definitely order again.\",\n            \"food_quality\": 5,\n            \"service_quality\": 5,\n            \"delivery_speed\": 4,\n            \"value_for_money\": 5,\n            \"images\": [\n                \"https:\\/\\/picsum.photos\\/400\\/300?random=review1\"\n            ],\n            \"verified_order\": true,\n            \"helpful_count\": 23,\n            \"created_at\": \"2024-01-20T10:30:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Review by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reviews/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reviews",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single review by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_avatar\": \"https:\\/\\/i.pravatar.cc\\/50?img=12\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"menu_item_id\": 1,\n    \"menu_item_name\": \"Margherita Pizza\",\n    \"rating\": 5,\n    \"title\": \"Best pizza in town!\",\n    \"comment\": \"Absolutely delicious! The crust was perfect and ingredients were fresh. Will definitely order again.\",\n    \"food_quality\": 5,\n    \"service_quality\": 5,\n    \"delivery_speed\": 4,\n    \"value_for_money\": 5,\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/400\\/300?random=review1\"\n    ],\n    \"verified_order\": true,\n    \"helpful_count\": 23,\n    \"created_at\": \"2024-01-20T10:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Review",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_avatar\": \"https:\\/\\/i.pravatar.cc\\/50?img=12\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"menu_item_id\": 1,\n    \"menu_item_name\": \"Margherita Pizza\",\n    \"rating\": 5,\n    \"title\": \"Best pizza in town!\",\n    \"comment\": \"Absolutely delicious! The crust was perfect and ingredients were fresh. Will definitely order again.\",\n    \"food_quality\": 5,\n    \"service_quality\": 5,\n    \"delivery_speed\": 4,\n    \"value_for_money\": 5,\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/400\\/300?random=review1\"\n    ],\n    \"verified_order\": true,\n    \"helpful_count\": 23\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reviews",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reviews"
                            ]
                        },
                        "description": "Create a new review"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_avatar\": \"https:\\/\\/i.pravatar.cc\\/50?img=12\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"menu_item_id\": 1,\n    \"menu_item_name\": \"Margherita Pizza\",\n    \"rating\": 5,\n    \"title\": \"Best pizza in town!\",\n    \"comment\": \"Absolutely delicious! The crust was perfect and ingredients were fresh. Will definitely order again.\",\n    \"food_quality\": 5,\n    \"service_quality\": 5,\n    \"delivery_speed\": 4,\n    \"value_for_money\": 5,\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/400\\/300?random=review1\"\n    ],\n    \"verified_order\": true,\n    \"helpful_count\": 23,\n    \"created_at\": \"2024-01-20T10:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Review",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_avatar\": \"https:\\/\\/i.pravatar.cc\\/50?img=12\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"menu_item_id\": 1,\n    \"menu_item_name\": \"Margherita Pizza\",\n    \"rating\": 5,\n    \"title\": \"Best pizza in town!\",\n    \"comment\": \"Absolutely delicious! The crust was perfect and ingredients were fresh. Will definitely order again.\",\n    \"food_quality\": 5,\n    \"service_quality\": 5,\n    \"delivery_speed\": 4,\n    \"value_for_money\": 5,\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/400\\/300?random=review1\"\n    ],\n    \"verified_order\": true,\n    \"helpful_count\": 23\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reviews/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reviews",
                                "1"
                            ]
                        },
                        "description": "Update an existing review"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Michael Johnson\",\n    \"user_avatar\": \"https:\\/\\/i.pravatar.cc\\/50?img=12\",\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"menu_item_id\": 1,\n    \"menu_item_name\": \"Margherita Pizza\",\n    \"rating\": 5,\n    \"title\": \"Best pizza in town!\",\n    \"comment\": \"Absolutely delicious! The crust was perfect and ingredients were fresh. Will definitely order again.\",\n    \"food_quality\": 5,\n    \"service_quality\": 5,\n    \"delivery_speed\": 4,\n    \"value_for_money\": 5,\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/400\\/300?random=review1\"\n    ],\n    \"verified_order\": true,\n    \"helpful_count\": 23,\n    \"created_at\": \"2024-01-20T10:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Review",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/reviews/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "reviews",
                                "1"
                            ]
                        },
                        "description": "Delete a review by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Review deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Tables",
            "description": "Restaurant table information",
            "item": [
                {
                    "name": "Get All Tables",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/tables",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "tables"
                            ]
                        },
                        "description": "Retrieve a paginated list of all tables"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"table_number\": \"T-1\",\n            \"capacity\": 2,\n            \"location\": \"Window\",\n            \"is_available\": true\n        },\n        {\n            \"restaurant_id\": 1,\n            \"restaurant_name\": \"Bella Italia\",\n            \"table_number\": \"T-1\",\n            \"capacity\": 2,\n            \"location\": \"Window\",\n            \"is_available\": true\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Table by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/tables/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "tables",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single table by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"table_number\": \"T-1\",\n    \"capacity\": 2,\n    \"location\": \"Window\",\n    \"is_available\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Create Table",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"table_number\": \"T-1\",\n    \"capacity\": 2,\n    \"location\": \"Window\",\n    \"is_available\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/tables",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "tables"
                            ]
                        },
                        "description": "Create a new table"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"table_number\": \"T-1\",\n    \"capacity\": 2,\n    \"location\": \"Window\",\n    \"is_available\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Update Table",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"table_number\": \"T-1\",\n    \"capacity\": 2,\n    \"location\": \"Window\",\n    \"is_available\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/tables/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "tables",
                                "1"
                            ]
                        },
                        "description": "Update an existing table"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"restaurant_id\": 1,\n    \"restaurant_name\": \"Bella Italia\",\n    \"table_number\": \"T-1\",\n    \"capacity\": 2,\n    \"location\": \"Window\",\n    \"is_available\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Table",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/tables/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "tables",
                                "1"
                            ]
                        },
                        "description": "Delete a table by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Table deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Users",
            "description": "Restaurant customers and users",
            "item": [
                {
                    "name": "Get All Users",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/users",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "users"
                            ]
                        },
                        "description": "Retrieve a paginated list of all users"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Michael Johnson\",\n            \"email\": \"michael@foodlover.com\",\n            \"password\": \"$2y$12$WPejqAxhV1x\\/RHOU4ZzqOuHp1qN2AnUi519gnMe95xh54jM07FCYG\",\n            \"api_token\": \"7ffc0e13cc1bb1ae92ac22ab537b3c7054cb6668706b46e296be9acfc8769fba\",\n            \"phone\": \"+1-555-0201\",\n            \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n            \"joined_at\": \"2023-06-15\",\n            \"orders_count\": 28,\n            \"loyalty_points\": 450,\n            \"is_premium\": true\n        },\n        {\n            \"id\": 1,\n            \"name\": \"Michael Johnson\",\n            \"email\": \"michael@foodlover.com\",\n            \"password\": \"$2y$12$WPejqAxhV1x\\/RHOU4ZzqOuHp1qN2AnUi519gnMe95xh54jM07FCYG\",\n            \"api_token\": \"7ffc0e13cc1bb1ae92ac22ab537b3c7054cb6668706b46e296be9acfc8769fba\",\n            \"phone\": \"+1-555-0201\",\n            \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n            \"joined_at\": \"2023-06-15\",\n            \"orders_count\": 28,\n            \"loyalty_points\": 450,\n            \"is_premium\": true\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get User by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single user by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"id\": 1,\n    \"name\": \"Michael Johnson\",\n    \"email\": \"michael@foodlover.com\",\n    \"password\": \"$2y$12$WPejqAxhV1x\\/RHOU4ZzqOuHp1qN2AnUi519gnMe95xh54jM07FCYG\",\n    \"api_token\": \"7ffc0e13cc1bb1ae92ac22ab537b3c7054cb6668706b46e296be9acfc8769fba\",\n    \"phone\": \"+1-555-0201\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"joined_at\": \"2023-06-15\",\n    \"orders_count\": 28,\n    \"loyalty_points\": 450,\n    \"is_premium\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Create User",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Michael Johnson\",\n    \"email\": \"michael@foodlover.com\",\n    \"password\": \"$2y$12$WPejqAxhV1x\\/RHOU4ZzqOuHp1qN2AnUi519gnMe95xh54jM07FCYG\",\n    \"api_token\": \"7ffc0e13cc1bb1ae92ac22ab537b3c7054cb6668706b46e296be9acfc8769fba\",\n    \"phone\": \"+1-555-0201\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"joined_at\": \"2023-06-15\",\n    \"orders_count\": 28,\n    \"loyalty_points\": 450,\n    \"is_premium\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/users",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "users"
                            ]
                        },
                        "description": "Create a new user"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"id\": 1,\n    \"name\": \"Michael Johnson\",\n    \"email\": \"michael@foodlover.com\",\n    \"password\": \"$2y$12$WPejqAxhV1x\\/RHOU4ZzqOuHp1qN2AnUi519gnMe95xh54jM07FCYG\",\n    \"api_token\": \"7ffc0e13cc1bb1ae92ac22ab537b3c7054cb6668706b46e296be9acfc8769fba\",\n    \"phone\": \"+1-555-0201\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"joined_at\": \"2023-06-15\",\n    \"orders_count\": 28,\n    \"loyalty_points\": 450,\n    \"is_premium\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Update User",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Michael Johnson\",\n    \"email\": \"michael@foodlover.com\",\n    \"password\": \"$2y$12$WPejqAxhV1x\\/RHOU4ZzqOuHp1qN2AnUi519gnMe95xh54jM07FCYG\",\n    \"api_token\": \"7ffc0e13cc1bb1ae92ac22ab537b3c7054cb6668706b46e296be9acfc8769fba\",\n    \"phone\": \"+1-555-0201\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"joined_at\": \"2023-06-15\",\n    \"orders_count\": 28,\n    \"loyalty_points\": 450,\n    \"is_premium\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Update an existing user"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"id\": 1,\n    \"name\": \"Michael Johnson\",\n    \"email\": \"michael@foodlover.com\",\n    \"password\": \"$2y$12$WPejqAxhV1x\\/RHOU4ZzqOuHp1qN2AnUi519gnMe95xh54jM07FCYG\",\n    \"api_token\": \"7ffc0e13cc1bb1ae92ac22ab537b3c7054cb6668706b46e296be9acfc8769fba\",\n    \"phone\": \"+1-555-0201\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"joined_at\": \"2023-06-15\",\n    \"orders_count\": 28,\n    \"loyalty_points\": 450,\n    \"is_premium\": true\n}"
                        }
                    ]
                },
                {
                    "name": "Delete User",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/restaurant/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "restaurant",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Delete a user by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"User deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        }
    ],
    "variable": [
        {
            "key": "baseUrl",
            "value": "https://jsonvibe.com",
            "type": "string"
        },
        {
            "key": "token",
            "value": "7ffc0e13cc1bb1ae92ac22ab537b3c7054cb6668706b46e296be9acfc8769fba",
            "type": "string"
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{token}}",
                "type": "string"
            }
        ]
    }
}