{
    "info": {
        "_postman_id": "6f1a911de38568c7108b00a4",
        "name": "Maaal Holding API",
        "description": "REST API for the Maaal Holding project (Laravel 12 + Sanctum).\n\nGetting started: 1) Select the 'Maaal Holding - Local' environment, 2) Run Auth -> Create api/auth/login (the token is saved automatically), 3) Try the other requests.",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{token}}",
                "type": "string"
            }
        ]
    },
    "variable": [
        {
            "key": "base_url",
            "value": "http://localhost:8000"
        }
    ],
    "item": [
        {
            "name": "Auth",
            "item": [
                {
                    "name": "List/Show auth/me",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/auth/me",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "me"
                            ]
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/auth/me",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "auth",
                                        "me"
                                    ]
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create auth/login",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/auth/login",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "login"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"login\": \"admin@maaal.com\",\n    \"password\": \"Password@123\",\n    \"device_name\": \"postman\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/auth/login",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "auth",
                                        "login"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"login\": \"admin@maaal.com\",\n    \"password\": \"Password@123\",\n    \"device_name\": \"postman\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ],
                    "event": [
                        {
                            "listen": "test",
                            "script": {
                                "type": "text/javascript",
                                "exec": [
                                    "var json = pm.response.json();",
                                    "if (json && json.data && json.data.token) {",
                                    "    pm.environment.set('token', json.data.token);",
                                    "    console.log('Saved token to environment');",
                                    "}"
                                ]
                            }
                        }
                    ]
                },
                {
                    "name": "Create auth/forgot-password",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/auth/forgot-password",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "forgot-password"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"identifier\": \"admin@maaal.com\",\n    \"channel\": \"email\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/auth/forgot-password",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "auth",
                                        "forgot-password"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"identifier\": \"admin@maaal.com\",\n    \"channel\": \"email\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create auth/verify-otp",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/auth/verify-otp",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "verify-otp"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"identifier\": \"admin@maaal.com\",\n    \"code\": \"123456\",\n    \"purpose\": \"password_reset\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/auth/verify-otp",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "auth",
                                        "verify-otp"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"identifier\": \"admin@maaal.com\",\n    \"code\": \"123456\",\n    \"purpose\": \"password_reset\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create auth/reset-password",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/auth/reset-password",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "reset-password"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"identifier\": \"admin@maaal.com\",\n    \"code\": \"123456\",\n    \"password\": \"NewPass@123\",\n    \"password_confirmation\": \"NewPass@123\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/auth/reset-password",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "auth",
                                        "reset-password"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"identifier\": \"admin@maaal.com\",\n    \"code\": \"123456\",\n    \"password\": \"NewPass@123\",\n    \"password_confirmation\": \"NewPass@123\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create auth/logout",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/auth/logout",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "logout"
                            ]
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/auth/logout",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "auth",
                                        "logout"
                                    ]
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Profile",
            "item": [
                {
                    "name": "List/Show profile",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/profile",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile"
                            ]
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/profile",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "profile"
                                    ]
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update profile",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/profile",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"first_name\": \"Mohammed\",\n    \"last_name\": \"Alotaibi\",\n    \"language\": \"en\",\n    \"linkedin_url\": \"https://linkedin.com/in/m\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/profile",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "profile"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"first_name\": \"Mohammed\",\n    \"last_name\": \"Alotaibi\",\n    \"language\": \"en\",\n    \"linkedin_url\": \"https://linkedin.com/in/m\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create profile/avatar",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/profile/avatar",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile",
                                "avatar"
                            ]
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/profile/avatar",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "profile",
                                        "avatar"
                                    ]
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create profile/change-password",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/profile/change-password",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile",
                                "change-password"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"current_password\": \"Password@123\",\n    \"password\": \"NewPass@123\",\n    \"password_confirmation\": \"NewPass@123\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/profile/change-password",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "profile",
                                        "change-password"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"current_password\": \"Password@123\",\n    \"password\": \"NewPass@123\",\n    \"password_confirmation\": \"NewPass@123\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create profile/email/request-otp",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/profile/email/request-otp",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile",
                                "email",
                                "request-otp"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"new@maaal.com\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/profile/email/request-otp",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "profile",
                                        "email",
                                        "request-otp"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"email\": \"new@maaal.com\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create profile/email/confirm",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/profile/email/confirm",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile",
                                "email",
                                "confirm"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"new@maaal.com\",\n    \"code\": \"123456\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/profile/email/confirm",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "profile",
                                        "email",
                                        "confirm"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"email\": \"new@maaal.com\",\n    \"code\": \"123456\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create profile/mobile/request-otp",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/profile/mobile/request-otp",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile",
                                "mobile",
                                "request-otp"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"mobile_number\": \"512345678\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/profile/mobile/request-otp",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "profile",
                                        "mobile",
                                        "request-otp"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"mobile_number\": \"512345678\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create profile/mobile/confirm",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/profile/mobile/confirm",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile",
                                "mobile",
                                "confirm"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"mobile_number\": \"512345678\",\n    \"mobile_country_code\": \"+966\",\n    \"code\": \"123456\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/profile/mobile/confirm",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "profile",
                                        "mobile",
                                        "confirm"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"mobile_number\": \"512345678\",\n    \"mobile_country_code\": \"+966\",\n    \"code\": \"123456\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Public Website",
            "item": [
                {
                    "name": "List/Show home",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/home",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "home"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/home",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "home"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show home/partners",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/home/partners",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "home",
                                "partners"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/home/partners",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "home",
                                        "partners"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show home/testimonials",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/home/testimonials",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "home",
                                "testimonials"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/home/testimonials",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "home",
                                        "testimonials"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show about",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/about",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "about"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/about",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "about"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show services",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/services",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "services"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/services",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "services"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show works",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/works",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "works"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/works",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "works"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show blog",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/blog",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "blog"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/blog",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "blog"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show studies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/studies",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "studies"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/studies",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "studies"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show contact/enquiry-types",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/contact/enquiry-types",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "contact",
                                "enquiry-types"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/contact/enquiry-types",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "contact",
                                        "enquiry-types"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show company-settings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/company-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "company-settings"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/company-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "company-settings"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show social-links",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/social-links",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social-links"
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/social-links",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "social-links"
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create contact",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/contact",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "contact"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Mohammed Alotaibi\",\n    \"email\": \"m@example.com\",\n    \"country_dial_code\": \"+966\",\n    \"phone\": \"500000000\",\n    \"enquiry_type_id\": 2,\n    \"subject\": \"Inquiry\",\n    \"message\": \"I have an inquiry about your services\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/contact",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "contact"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Mohammed Alotaibi\",\n    \"email\": \"m@example.com\",\n    \"country_dial_code\": \"+966\",\n    \"phone\": \"500000000\",\n    \"enquiry_type_id\": 2,\n    \"subject\": \"Inquiry\",\n    \"message\": \"I have an inquiry about your services\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show services/{slug}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/services/:slug",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "services",
                                ":slug"
                            ],
                            "variable": [
                                {
                                    "key": "slug",
                                    "value": "1"
                                }
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/services/:slug",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "services",
                                        ":slug"
                                    ],
                                    "variable": [
                                        {
                                            "key": "slug",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show services/{slug}/works",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/services/:slug/works",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "services",
                                ":slug",
                                "works"
                            ],
                            "variable": [
                                {
                                    "key": "slug",
                                    "value": "1"
                                }
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/services/:slug/works",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "services",
                                        ":slug",
                                        "works"
                                    ],
                                    "variable": [
                                        {
                                            "key": "slug",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show works/{slug}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/works/:slug",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "works",
                                ":slug"
                            ],
                            "variable": [
                                {
                                    "key": "slug",
                                    "value": "1"
                                }
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/works/:slug",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "works",
                                        ":slug"
                                    ],
                                    "variable": [
                                        {
                                            "key": "slug",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show blog/{slug}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/blog/:slug",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "blog",
                                ":slug"
                            ],
                            "variable": [
                                {
                                    "key": "slug",
                                    "value": "1"
                                }
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/blog/:slug",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "blog",
                                        ":slug"
                                    ],
                                    "variable": [
                                        {
                                            "key": "slug",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show studies/{slug}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/studies/:slug",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "studies",
                                ":slug"
                            ],
                            "variable": [
                                {
                                    "key": "slug",
                                    "value": "1"
                                }
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/studies/:slug",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "studies",
                                        ":slug"
                                    ],
                                    "variable": [
                                        {
                                            "key": "slug",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Download — studies/{id}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/studies/:id/download",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "studies",
                                ":id",
                                "download"
                            ],
                            "variable": [
                                {
                                    "key": "id",
                                    "value": "1"
                                }
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/studies/:id/download",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "studies",
                                        ":id",
                                        "download"
                                    ],
                                    "variable": [
                                        {
                                            "key": "id",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show menus/{location}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/menus/:location",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "menus",
                                ":location"
                            ],
                            "variable": [
                                {
                                    "key": "location",
                                    "value": "1"
                                }
                            ]
                        },
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/menus/:location",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "menus",
                                        ":location"
                                    ],
                                    "variable": [
                                        {
                                            "key": "location",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Dashboard",
            "item": [
                {
                    "name": "List/Show admin/dashboard/stats",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/dashboard/stats",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "stats"
                            ]
                        },
                        "description": "Requires permission: `dashboard.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/dashboard/stats",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "dashboard",
                                        "stats"
                                    ]
                                },
                                "description": "Requires permission: `dashboard.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show admin/dashboard/requests-chart",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/dashboard/requests-chart",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "requests-chart"
                            ]
                        },
                        "description": "Requires permission: `dashboard.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/dashboard/requests-chart",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "dashboard",
                                        "requests-chart"
                                    ]
                                },
                                "description": "Requires permission: `dashboard.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show admin/dashboard/recent",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/dashboard/recent",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "recent"
                            ]
                        },
                        "description": "Requires permission: `dashboard.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/dashboard/recent",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "dashboard",
                                        "recent"
                                    ]
                                },
                                "description": "Requires permission: `dashboard.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Users",
            "item": [
                {
                    "name": "List/Show admin/users",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/users",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "users"
                            ]
                        },
                        "description": "Requires permission: `users.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/users",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "users"
                                    ]
                                },
                                "description": "Requires permission: `users.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/users",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/users",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "users"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"username\": \"editor1\",\n    \"first_name\": \"Sara\",\n    \"last_name\": \"Alqahtani\",\n    \"gender\": \"female\",\n    \"language\": \"en\",\n    \"role_id\": 2,\n    \"is_active\": true,\n    \"email\": \"sara@maaal.com\",\n    \"mobile_number\": \"512345678\",\n    \"mobile_country_code\": \"+966\",\n    \"password\": \"Secret@123\",\n    \"password_confirmation\": \"Secret@123\",\n    \"date_of_birth\": \"1995-05-20\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `users.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/users",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "users"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"username\": \"editor1\",\n    \"first_name\": \"Sara\",\n    \"last_name\": \"Alqahtani\",\n    \"gender\": \"female\",\n    \"language\": \"en\",\n    \"role_id\": 2,\n    \"is_active\": true,\n    \"email\": \"sara@maaal.com\",\n    \"mobile_number\": \"512345678\",\n    \"mobile_country_code\": \"+966\",\n    \"password\": \"Secret@123\",\n    \"password_confirmation\": \"Secret@123\",\n    \"date_of_birth\": \"1995-05-20\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `users.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/users/{user}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/users/:user/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "users",
                                ":user",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "user",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `users.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/users/:user/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "users",
                                        ":user",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "user",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `users.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/users/{user}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/users/:user",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "users",
                                ":user"
                            ],
                            "variable": [
                                {
                                    "key": "user",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `users.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/users/:user",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "users",
                                        ":user"
                                    ],
                                    "variable": [
                                        {
                                            "key": "user",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `users.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/users/{user}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/users/:user",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "users",
                                ":user"
                            ],
                            "variable": [
                                {
                                    "key": "user",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"first_name\": \"Sara\",\n    \"is_active\": true,\n    \"role_id\": 2\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `users.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/users/:user",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "users",
                                        ":user"
                                    ],
                                    "variable": [
                                        {
                                            "key": "user",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"first_name\": \"Sara\",\n    \"is_active\": true,\n    \"role_id\": 2\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `users.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/users/{user}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/users/:user",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "users",
                                ":user"
                            ],
                            "variable": [
                                {
                                    "key": "user",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `users.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/users/:user",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "users",
                                        ":user"
                                    ],
                                    "variable": [
                                        {
                                            "key": "user",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `users.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Roles",
            "item": [
                {
                    "name": "List/Show admin/roles",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/roles",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "roles"
                            ]
                        },
                        "description": "Requires permission: `roles.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/roles",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "roles"
                                    ]
                                },
                                "description": "Requires permission: `roles.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/roles",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/roles",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "roles"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Editor\",\n    \"language\": \"en\",\n    \"is_active\": true,\n    \"permissions\": [\n        1,\n        2,\n        3\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `roles.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/roles",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "roles"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Editor\",\n    \"language\": \"en\",\n    \"is_active\": true,\n    \"permissions\": [\n        1,\n        2,\n        3\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `roles.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/roles/{role}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/roles/:role/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "roles",
                                ":role",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "role",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `roles.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/roles/:role/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "roles",
                                        ":role",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "role",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `roles.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/roles/{role}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/roles/:role",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "roles",
                                ":role"
                            ],
                            "variable": [
                                {
                                    "key": "role",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `roles.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/roles/:role",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "roles",
                                        ":role"
                                    ],
                                    "variable": [
                                        {
                                            "key": "role",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `roles.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/roles/{role}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/roles/:role",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "roles",
                                ":role"
                            ],
                            "variable": [
                                {
                                    "key": "role",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Senior Editor\",\n    \"is_active\": true,\n    \"permissions\": [\n        1,\n        2,\n        3,\n        4\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `roles.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/roles/:role",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "roles",
                                        ":role"
                                    ],
                                    "variable": [
                                        {
                                            "key": "role",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Senior Editor\",\n    \"is_active\": true,\n    \"permissions\": [\n        1,\n        2,\n        3,\n        4\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `roles.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/roles/{role}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/roles/:role",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "roles",
                                ":role"
                            ],
                            "variable": [
                                {
                                    "key": "role",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `roles.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/roles/:role",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "roles",
                                        ":role"
                                    ],
                                    "variable": [
                                        {
                                            "key": "role",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `roles.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Permissions",
            "item": [
                {
                    "name": "List/Show admin/permissions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/permissions",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "permissions"
                            ]
                        },
                        "description": "Requires permission: `roles.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/permissions",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "permissions"
                                    ]
                                },
                                "description": "Requires permission: `roles.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Services",
            "item": [
                {
                    "name": "List/Show admin/services",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/services",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "services"
                            ]
                        },
                        "description": "Requires permission: `services.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/services",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "services"
                                    ]
                                },
                                "description": "Requires permission: `services.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/services",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/services/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "services",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `services.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/services/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "services",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `services.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/services",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/services",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "services"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Financial Consulting\",\n    \"short_description\": \"A comprehensive advisory service\",\n    \"description\": \"Detailed service description\",\n    \"icon\": \"icon-chart\",\n    \"image\": \"services/1.jpg\",\n    \"is_active\": true,\n    \"order\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `services.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/services",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "services"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Financial Consulting\",\n    \"short_description\": \"A comprehensive advisory service\",\n    \"description\": \"Detailed service description\",\n    \"icon\": \"icon-chart\",\n    \"image\": \"services/1.jpg\",\n    \"is_active\": true,\n    \"order\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `services.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/services/{service}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/services/:service/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "services",
                                ":service",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "service",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `services.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/services/:service/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "services",
                                        ":service",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "service",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `services.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Duplicate — admin/services/{service}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/services/:service/duplicate",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "services",
                                ":service",
                                "duplicate"
                            ],
                            "variable": [
                                {
                                    "key": "service",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `services.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/services/:service/duplicate",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "services",
                                        ":service",
                                        "duplicate"
                                    ],
                                    "variable": [
                                        {
                                            "key": "service",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `services.create`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/services/{service}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/services/:service",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "services",
                                ":service"
                            ],
                            "variable": [
                                {
                                    "key": "service",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `services.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/services/:service",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "services",
                                        ":service"
                                    ],
                                    "variable": [
                                        {
                                            "key": "service",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `services.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/services/{service}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/services/:service",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "services",
                                ":service"
                            ],
                            "variable": [
                                {
                                    "key": "service",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Financial & Economic Consulting\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `services.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/services/:service",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "services",
                                        ":service"
                                    ],
                                    "variable": [
                                        {
                                            "key": "service",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Financial & Economic Consulting\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `services.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/services/{service}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/services/:service",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "services",
                                ":service"
                            ],
                            "variable": [
                                {
                                    "key": "service",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `services.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/services/:service",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "services",
                                        ":service"
                                    ],
                                    "variable": [
                                        {
                                            "key": "service",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `services.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Works",
            "item": [
                {
                    "name": "List/Show admin/works",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/works",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "works"
                            ]
                        },
                        "description": "Requires permission: `works.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/works",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "works"
                                    ]
                                },
                                "description": "Requires permission: `works.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/works",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/works/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "works",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `works.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/works/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "works",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `works.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/works",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/works",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "works"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"service_id\": 1,\n    \"title\": \"Economic Development Project\",\n    \"short_description\": \"Brief\",\n    \"description\": \"Project details\",\n    \"client_name\": \"Capital Market Authority\",\n    \"image\": \"works/1.jpg\",\n    \"gallery\": [\n        \"works/1a.jpg\",\n        \"works/1b.jpg\"\n    ],\n    \"is_featured\": true,\n    \"is_active\": true,\n    \"order\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `works.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/works",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "works"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"service_id\": 1,\n    \"title\": \"Economic Development Project\",\n    \"short_description\": \"Brief\",\n    \"description\": \"Project details\",\n    \"client_name\": \"Capital Market Authority\",\n    \"image\": \"works/1.jpg\",\n    \"gallery\": [\n        \"works/1a.jpg\",\n        \"works/1b.jpg\"\n    ],\n    \"is_featured\": true,\n    \"is_active\": true,\n    \"order\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `works.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/works/{work}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/works/:work/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "works",
                                ":work",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "work",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `works.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/works/:work/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "works",
                                        ":work",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "work",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `works.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Duplicate — admin/works/{work}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/works/:work/duplicate",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "works",
                                ":work",
                                "duplicate"
                            ],
                            "variable": [
                                {
                                    "key": "work",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `works.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/works/:work/duplicate",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "works",
                                        ":work",
                                        "duplicate"
                                    ],
                                    "variable": [
                                        {
                                            "key": "work",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `works.create`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/works/{work}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/works/:work",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "works",
                                ":work"
                            ],
                            "variable": [
                                {
                                    "key": "work",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `works.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/works/:work",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "works",
                                        ":work"
                                    ],
                                    "variable": [
                                        {
                                            "key": "work",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `works.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/works/{work}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/works/:work",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "works",
                                ":work"
                            ],
                            "variable": [
                                {
                                    "key": "work",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Updated Project\",\n    \"is_featured\": false\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `works.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/works/:work",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "works",
                                        ":work"
                                    ],
                                    "variable": [
                                        {
                                            "key": "work",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Updated Project\",\n    \"is_featured\": false\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `works.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/works/{work}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/works/:work",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "works",
                                ":work"
                            ],
                            "variable": [
                                {
                                    "key": "work",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `works.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/works/:work",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "works",
                                        ":work"
                                    ],
                                    "variable": [
                                        {
                                            "key": "work",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `works.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Articles",
            "item": [
                {
                    "name": "List/Show admin/articles",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles"
                            ]
                        },
                        "description": "Requires permission: `articles.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles"
                                    ]
                                },
                                "description": "Requires permission: `articles.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/articles",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Stock market index rises\",\n    \"subtitle\": \"Subheading\",\n    \"excerpt\": \"News summary\",\n    \"body\": \"The full article text\",\n    \"featured_image\": \"articles/1.jpg\",\n    \"category_id\": 1,\n    \"author_id\": 1,\n    \"status\": \"published\",\n    \"publish_type\": \"immediate\",\n    \"is_featured\": true,\n    \"tags\": [\n        1,\n        2\n    ],\n    \"meta_title\": \"SEO title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `articles.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Stock market index rises\",\n    \"subtitle\": \"Subheading\",\n    \"excerpt\": \"News summary\",\n    \"body\": \"The full article text\",\n    \"featured_image\": \"articles/1.jpg\",\n    \"category_id\": 1,\n    \"author_id\": 1,\n    \"status\": \"published\",\n    \"publish_type\": \"immediate\",\n    \"is_featured\": true,\n    \"tags\": [\n        1,\n        2\n    ],\n    \"meta_title\": \"SEO title\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `articles.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/articles/{article}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles/:article/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles",
                                ":article",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "article",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `articles.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles/:article/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles",
                                        ":article",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "article",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `articles.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Featured — admin/articles/{article}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles/:article/toggle-featured",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles",
                                ":article",
                                "toggle-featured"
                            ],
                            "variable": [
                                {
                                    "key": "article",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `articles.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles/:article/toggle-featured",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles",
                                        ":article",
                                        "toggle-featured"
                                    ],
                                    "variable": [
                                        {
                                            "key": "article",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `articles.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Publish — admin/articles/{article}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles/:article/publish",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles",
                                ":article",
                                "publish"
                            ],
                            "variable": [
                                {
                                    "key": "article",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `articles.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles/:article/publish",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles",
                                        ":article",
                                        "publish"
                                    ],
                                    "variable": [
                                        {
                                            "key": "article",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `articles.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Schedule — admin/articles/{article}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles/:article/schedule",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles",
                                ":article",
                                "schedule"
                            ],
                            "variable": [
                                {
                                    "key": "article",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"published_at\": \"2026-07-01 09:00:00\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `articles.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles/:article/schedule",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles",
                                        ":article",
                                        "schedule"
                                    ],
                                    "variable": [
                                        {
                                            "key": "article",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"published_at\": \"2026-07-01 09:00:00\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `articles.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Restore — admin/articles/{id}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles/:id/restore",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles",
                                ":id",
                                "restore"
                            ],
                            "variable": [
                                {
                                    "key": "id",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `articles.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles/:id/restore",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles",
                                        ":id",
                                        "restore"
                                    ],
                                    "variable": [
                                        {
                                            "key": "id",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `articles.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/articles/{article}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles/:article",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles",
                                ":article"
                            ],
                            "variable": [
                                {
                                    "key": "article",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `articles.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles/:article",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles",
                                        ":article"
                                    ],
                                    "variable": [
                                        {
                                            "key": "article",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `articles.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/articles/{article}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles/:article",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles",
                                ":article"
                            ],
                            "variable": [
                                {
                                    "key": "article",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Updated title\",\n    \"status\": \"published\",\n    \"tags\": [\n        1,\n        3\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `articles.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles/:article",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles",
                                        ":article"
                                    ],
                                    "variable": [
                                        {
                                            "key": "article",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Updated title\",\n    \"status\": \"published\",\n    \"tags\": [\n        1,\n        3\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `articles.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/articles/{article}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/articles/:article",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "articles",
                                ":article"
                            ],
                            "variable": [
                                {
                                    "key": "article",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `articles.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/articles/:article",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "articles",
                                        ":article"
                                    ],
                                    "variable": [
                                        {
                                            "key": "article",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `articles.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Categories",
            "item": [
                {
                    "name": "List/Show admin/categories",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/categories",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "categories"
                            ]
                        },
                        "description": "Requires permission: `categories.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/categories",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "categories"
                                    ]
                                },
                                "description": "Requires permission: `categories.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/categories",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/categories/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "categories",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `categories.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/categories/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "categories",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `categories.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/categories",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/categories",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "categories"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Financial Markets\",\n    \"description\": \"Category\",\n    \"parent_id\": null,\n    \"order\": 1,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `categories.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/categories",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "categories"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Financial Markets\",\n    \"description\": \"Category\",\n    \"parent_id\": null,\n    \"order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `categories.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/categories/{category}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/categories/:category/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "categories",
                                ":category",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "category",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `categories.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/categories/:category/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "categories",
                                        ":category",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "category",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `categories.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/categories/{category}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/categories/:category",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "categories",
                                ":category"
                            ],
                            "variable": [
                                {
                                    "key": "category",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `categories.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/categories/:category",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "categories",
                                        ":category"
                                    ],
                                    "variable": [
                                        {
                                            "key": "category",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `categories.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/categories/{category}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/categories/:category",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "categories",
                                ":category"
                            ],
                            "variable": [
                                {
                                    "key": "category",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Markets\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `categories.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/categories/:category",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "categories",
                                        ":category"
                                    ],
                                    "variable": [
                                        {
                                            "key": "category",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Markets\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `categories.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/categories/{category}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/categories/:category",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "categories",
                                ":category"
                            ],
                            "variable": [
                                {
                                    "key": "category",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `categories.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/categories/:category",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "categories",
                                        ":category"
                                    ],
                                    "variable": [
                                        {
                                            "key": "category",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `categories.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Tags",
            "item": [
                {
                    "name": "List/Show admin/tags",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tags",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tags"
                            ]
                        },
                        "description": "Requires permission: `tags.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tags",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tags"
                                    ]
                                },
                                "description": "Requires permission: `tags.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/tags",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tags",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tags"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Trading\",\n    \"description\": \"Tag\",\n    \"language\": \"en\",\n    \"is_popular\": true,\n    \"is_active\": true,\n    \"order\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `tags.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tags",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tags"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Trading\",\n    \"description\": \"Tag\",\n    \"language\": \"en\",\n    \"is_popular\": true,\n    \"is_active\": true,\n    \"order\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `tags.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/tags/{tag}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tags/:tag/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tags",
                                ":tag",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "tag",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `tags.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tags/:tag/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tags",
                                        ":tag",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "tag",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `tags.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/tags/{tag}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tags/:tag",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tags",
                                ":tag"
                            ],
                            "variable": [
                                {
                                    "key": "tag",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `tags.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tags/:tag",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tags",
                                        ":tag"
                                    ],
                                    "variable": [
                                        {
                                            "key": "tag",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `tags.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/tags/{tag}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tags/:tag",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tags",
                                ":tag"
                            ],
                            "variable": [
                                {
                                    "key": "tag",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Stock Trading\",\n    \"is_popular\": false\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `tags.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tags/:tag",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tags",
                                        ":tag"
                                    ],
                                    "variable": [
                                        {
                                            "key": "tag",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Stock Trading\",\n    \"is_popular\": false\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `tags.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/tags/{tag}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tags/:tag",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tags",
                                ":tag"
                            ],
                            "variable": [
                                {
                                    "key": "tag",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `tags.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tags/:tag",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tags",
                                        ":tag"
                                    ],
                                    "variable": [
                                        {
                                            "key": "tag",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `tags.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Study Categories",
            "item": [
                {
                    "name": "List/Show admin/study-categories",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/study-categories",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "study-categories"
                            ]
                        },
                        "description": "Requires permission: `study_categories.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/study-categories",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "study-categories"
                                    ]
                                },
                                "description": "Requires permission: `study_categories.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/study-categories",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/study-categories",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "study-categories"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Economic Studies\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `study_categories.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/study-categories",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "study-categories"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Economic Studies\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `study_categories.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/study-categories/{study_category}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/study-categories/:study_category/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "study-categories",
                                ":study_category",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "study_category",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `study_categories.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/study-categories/:study_category/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "study-categories",
                                        ":study_category",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study_category",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `study_categories.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/study-categories/{study_category}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/study-categories/:study_category",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "study-categories",
                                ":study_category"
                            ],
                            "variable": [
                                {
                                    "key": "study_category",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `study_categories.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/study-categories/:study_category",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "study-categories",
                                        ":study_category"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study_category",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `study_categories.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/study-categories/{study_category}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/study-categories/:study_category",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "study-categories",
                                ":study_category"
                            ],
                            "variable": [
                                {
                                    "key": "study_category",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Market Research\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `study_categories.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/study-categories/:study_category",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "study-categories",
                                        ":study_category"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study_category",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Market Research\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `study_categories.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/study-categories/{study_category}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/study-categories/:study_category",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "study-categories",
                                ":study_category"
                            ],
                            "variable": [
                                {
                                    "key": "study_category",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `study_categories.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/study-categories/:study_category",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "study-categories",
                                        ":study_category"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study_category",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `study_categories.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Studies",
            "item": [
                {
                    "name": "List/Show admin/studies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/studies",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "studies"
                            ]
                        },
                        "description": "Requires permission: `studies.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/studies",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "studies"
                                    ]
                                },
                                "description": "Requires permission: `studies.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/studies",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/studies",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "studies"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"A Study on Economic Growth\",\n    \"summary\": \"Study summary\",\n    \"body\": \"Study content\",\n    \"cover_image\": \"studies/cover.jpg\",\n    \"document_path\": \"studies/report.pdf\",\n    \"document_type\": \"pdf\",\n    \"study_category_id\": 1,\n    \"author\": \"Dr. Ahmed Almalki\",\n    \"year\": 2026,\n    \"month\": 6,\n    \"is_featured\": true,\n    \"status\": \"published\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `studies.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/studies",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "studies"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"A Study on Economic Growth\",\n    \"summary\": \"Study summary\",\n    \"body\": \"Study content\",\n    \"cover_image\": \"studies/cover.jpg\",\n    \"document_path\": \"studies/report.pdf\",\n    \"document_type\": \"pdf\",\n    \"study_category_id\": 1,\n    \"author\": \"Dr. Ahmed Almalki\",\n    \"year\": 2026,\n    \"month\": 6,\n    \"is_featured\": true,\n    \"status\": \"published\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `studies.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/studies/{study}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/studies/:study/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "studies",
                                ":study",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "study",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `studies.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/studies/:study/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "studies",
                                        ":study",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `studies.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Featured — admin/studies/{study}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/studies/:study/toggle-featured",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "studies",
                                ":study",
                                "toggle-featured"
                            ],
                            "variable": [
                                {
                                    "key": "study",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `studies.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/studies/:study/toggle-featured",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "studies",
                                        ":study",
                                        "toggle-featured"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `studies.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Download — admin/studies/{study}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/studies/:study/download",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "studies",
                                ":study",
                                "download"
                            ],
                            "variable": [
                                {
                                    "key": "study",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `studies.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/studies/:study/download",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "studies",
                                        ":study",
                                        "download"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `studies.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/studies/{study}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/studies/:study",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "studies",
                                ":study"
                            ],
                            "variable": [
                                {
                                    "key": "study",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `studies.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/studies/:study",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "studies",
                                        ":study"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `studies.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/studies/{study}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/studies/:study",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "studies",
                                ":study"
                            ],
                            "variable": [
                                {
                                    "key": "study",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Updated Study\",\n    \"status\": \"published\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `studies.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/studies/:study",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "studies",
                                        ":study"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Updated Study\",\n    \"status\": \"published\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `studies.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/studies/{study}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/studies/:study",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "studies",
                                ":study"
                            ],
                            "variable": [
                                {
                                    "key": "study",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `studies.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/studies/:study",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "studies",
                                        ":study"
                                    ],
                                    "variable": [
                                        {
                                            "key": "study",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `studies.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Partners",
            "item": [
                {
                    "name": "List/Show admin/partners",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/partners",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "partners"
                            ]
                        },
                        "description": "Requires permission: `partners.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/partners",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "partners"
                                    ]
                                },
                                "description": "Requires permission: `partners.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/partners",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/partners/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "partners",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `partners.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/partners/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "partners",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `partners.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/partners",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/partners",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "partners"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Saudi Aramco\",\n    \"logo\": \"partners/1.png\",\n    \"url\": \"https://aramco.com\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `partners.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/partners",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "partners"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Saudi Aramco\",\n    \"logo\": \"partners/1.png\",\n    \"url\": \"https://aramco.com\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `partners.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/partners/{partner}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/partners/:partner/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "partners",
                                ":partner",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "partner",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `partners.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/partners/:partner/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "partners",
                                        ":partner",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "partner",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `partners.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/partners/{partner}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/partners/:partner",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "partners",
                                ":partner"
                            ],
                            "variable": [
                                {
                                    "key": "partner",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `partners.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/partners/:partner",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "partners",
                                        ":partner"
                                    ],
                                    "variable": [
                                        {
                                            "key": "partner",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `partners.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/partners/{partner}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/partners/:partner",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "partners",
                                ":partner"
                            ],
                            "variable": [
                                {
                                    "key": "partner",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"SABIC\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `partners.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/partners/:partner",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "partners",
                                        ":partner"
                                    ],
                                    "variable": [
                                        {
                                            "key": "partner",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"SABIC\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `partners.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/partners/{partner}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/partners/:partner",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "partners",
                                ":partner"
                            ],
                            "variable": [
                                {
                                    "key": "partner",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `partners.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/partners/:partner",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "partners",
                                        ":partner"
                                    ],
                                    "variable": [
                                        {
                                            "key": "partner",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `partners.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Testimonials",
            "item": [
                {
                    "name": "List/Show admin/testimonials",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/testimonials",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "testimonials"
                            ]
                        },
                        "description": "Requires permission: `testimonials.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/testimonials",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "testimonials"
                                    ]
                                },
                                "description": "Requires permission: `testimonials.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/testimonials",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/testimonials/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "testimonials",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `testimonials.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/testimonials/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "testimonials",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `testimonials.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/testimonials",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/testimonials",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "testimonials"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"author_name\": \"Khalid Aldosari\",\n    \"author_title\": \"Chief Executive Officer\",\n    \"avatar\": \"testimonials/1.jpg\",\n    \"quote\": \"Excellent service and solid economic content.\",\n    \"rating\": 5,\n    \"order\": 1,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `testimonials.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/testimonials",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "testimonials"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"author_name\": \"Khalid Aldosari\",\n    \"author_title\": \"Chief Executive Officer\",\n    \"avatar\": \"testimonials/1.jpg\",\n    \"quote\": \"Excellent service and solid economic content.\",\n    \"rating\": 5,\n    \"order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `testimonials.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/testimonials/{testimonial}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/testimonials/:testimonial/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "testimonials",
                                ":testimonial",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "testimonial",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `testimonials.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/testimonials/:testimonial/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "testimonials",
                                        ":testimonial",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "testimonial",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `testimonials.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/testimonials/{testimonial}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/testimonials/:testimonial",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "testimonials",
                                ":testimonial"
                            ],
                            "variable": [
                                {
                                    "key": "testimonial",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `testimonials.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/testimonials/:testimonial",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "testimonials",
                                        ":testimonial"
                                    ],
                                    "variable": [
                                        {
                                            "key": "testimonial",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `testimonials.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/testimonials/{testimonial}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/testimonials/:testimonial",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "testimonials",
                                ":testimonial"
                            ],
                            "variable": [
                                {
                                    "key": "testimonial",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"author_title\": \"Vice President\",\n    \"rating\": 4\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `testimonials.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/testimonials/:testimonial",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "testimonials",
                                        ":testimonial"
                                    ],
                                    "variable": [
                                        {
                                            "key": "testimonial",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"author_title\": \"Vice President\",\n    \"rating\": 4\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `testimonials.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/testimonials/{testimonial}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/testimonials/:testimonial",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "testimonials",
                                ":testimonial"
                            ],
                            "variable": [
                                {
                                    "key": "testimonial",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `testimonials.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/testimonials/:testimonial",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "testimonials",
                                        ":testimonial"
                                    ],
                                    "variable": [
                                        {
                                            "key": "testimonial",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `testimonials.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Enquiry Types",
            "item": [
                {
                    "name": "List/Show admin/enquiry-types",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/enquiry-types",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "enquiry-types"
                            ]
                        },
                        "description": "Requires permission: `enquiry_types.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/enquiry-types",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "enquiry-types"
                                    ]
                                },
                                "description": "Requires permission: `enquiry_types.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/enquiry-types",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/enquiry-types/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "enquiry-types",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `enquiry_types.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/enquiry-types/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "enquiry-types",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `enquiry_types.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/enquiry-types",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/enquiry-types",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "enquiry-types"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Consultation Request\",\n    \"name_en\": \"Consultation\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `enquiry_types.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/enquiry-types",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "enquiry-types"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Consultation Request\",\n    \"name_en\": \"Consultation\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `enquiry_types.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/enquiry-types/{enquiry_type}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/enquiry-types/:enquiry_type/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "enquiry-types",
                                ":enquiry_type",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "enquiry_type",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `enquiry_types.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/enquiry-types/:enquiry_type/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "enquiry-types",
                                        ":enquiry_type",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "enquiry_type",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `enquiry_types.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/enquiry-types/{enquiry_type}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/enquiry-types/:enquiry_type",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "enquiry-types",
                                ":enquiry_type"
                            ],
                            "variable": [
                                {
                                    "key": "enquiry_type",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `enquiry_types.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/enquiry-types/:enquiry_type",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "enquiry-types",
                                        ":enquiry_type"
                                    ],
                                    "variable": [
                                        {
                                            "key": "enquiry_type",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `enquiry_types.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/enquiry-types/{enquiry_type}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/enquiry-types/:enquiry_type",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "enquiry-types",
                                ":enquiry_type"
                            ],
                            "variable": [
                                {
                                    "key": "enquiry_type",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Financial Consultation\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `enquiry_types.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/enquiry-types/:enquiry_type",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "enquiry-types",
                                        ":enquiry_type"
                                    ],
                                    "variable": [
                                        {
                                            "key": "enquiry_type",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Financial Consultation\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `enquiry_types.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/enquiry-types/{enquiry_type}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/enquiry-types/:enquiry_type",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "enquiry-types",
                                ":enquiry_type"
                            ],
                            "variable": [
                                {
                                    "key": "enquiry_type",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `enquiry_types.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/enquiry-types/:enquiry_type",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "enquiry-types",
                                        ":enquiry_type"
                                    ],
                                    "variable": [
                                        {
                                            "key": "enquiry_type",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `enquiry_types.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Tickets",
            "item": [
                {
                    "name": "List/Show admin/tickets",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets"
                            ]
                        },
                        "description": "Requires permission: `tickets.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets"
                                    ]
                                },
                                "description": "Requires permission: `tickets.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/tickets",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"contact\",\n    \"name\": \"Client\",\n    \"email\": \"c@example.com\",\n    \"country_dial_code\": \"+966\",\n    \"phone\": \"500000000\",\n    \"enquiry_type_id\": 1,\n    \"subject\": \"Subject\",\n    \"message\": \"Message body\",\n    \"channel\": \"dashboard\",\n    \"status\": \"new\",\n    \"priority\": \"normal\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `tickets.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"type\": \"contact\",\n    \"name\": \"Client\",\n    \"email\": \"c@example.com\",\n    \"country_dial_code\": \"+966\",\n    \"phone\": \"500000000\",\n    \"enquiry_type_id\": 1,\n    \"subject\": \"Subject\",\n    \"message\": \"Message body\",\n    \"channel\": \"dashboard\",\n    \"status\": \"new\",\n    \"priority\": \"normal\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `tickets.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Reply — admin/tickets/{ticket}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets/:ticket/reply",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets",
                                ":ticket",
                                "reply"
                            ],
                            "variable": [
                                {
                                    "key": "ticket",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"body\": \"Your inquiry has been answered, thank you.\",\n    \"channel\": \"dashboard\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `tickets.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets/:ticket/reply",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets",
                                        ":ticket",
                                        "reply"
                                    ],
                                    "variable": [
                                        {
                                            "key": "ticket",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"body\": \"Your inquiry has been answered, thank you.\",\n    \"channel\": \"dashboard\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `tickets.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Status — admin/tickets/{ticket}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets/:ticket/status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets",
                                ":ticket",
                                "status"
                            ],
                            "variable": [
                                {
                                    "key": "ticket",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"status\": \"replied\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `tickets.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets/:ticket/status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets",
                                        ":ticket",
                                        "status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "ticket",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"status\": \"replied\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `tickets.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Assign — admin/tickets/{ticket}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets/:ticket/assign",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets",
                                ":ticket",
                                "assign"
                            ],
                            "variable": [
                                {
                                    "key": "ticket",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"assigned_to\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `tickets.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets/:ticket/assign",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets",
                                        ":ticket",
                                        "assign"
                                    ],
                                    "variable": [
                                        {
                                            "key": "ticket",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"assigned_to\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `tickets.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Read — admin/tickets/{ticket}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets/:ticket/read",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets",
                                ":ticket",
                                "read"
                            ],
                            "variable": [
                                {
                                    "key": "ticket",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `tickets.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets/:ticket/read",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets",
                                        ":ticket",
                                        "read"
                                    ],
                                    "variable": [
                                        {
                                            "key": "ticket",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `tickets.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/tickets/{ticket}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets/:ticket",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets",
                                ":ticket"
                            ],
                            "variable": [
                                {
                                    "key": "ticket",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `tickets.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets/:ticket",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets",
                                        ":ticket"
                                    ],
                                    "variable": [
                                        {
                                            "key": "ticket",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `tickets.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/tickets/{ticket}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets/:ticket",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets",
                                ":ticket"
                            ],
                            "variable": [
                                {
                                    "key": "ticket",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"status\": \"open\",\n    \"priority\": \"high\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `tickets.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets/:ticket",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets",
                                        ":ticket"
                                    ],
                                    "variable": [
                                        {
                                            "key": "ticket",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"status\": \"open\",\n    \"priority\": \"high\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `tickets.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/tickets/{ticket}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tickets/:ticket",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tickets",
                                ":ticket"
                            ],
                            "variable": [
                                {
                                    "key": "ticket",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `tickets.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tickets/:ticket",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tickets",
                                        ":ticket"
                                    ],
                                    "variable": [
                                        {
                                            "key": "ticket",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `tickets.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Menus",
            "item": [
                {
                    "name": "List/Show admin/menus",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menus",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menus"
                            ]
                        },
                        "description": "Requires permission: `menus.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menus",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menus"
                                    ]
                                },
                                "description": "Requires permission: `menus.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/menus",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menus",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menus"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Main Menu\",\n    \"location\": \"header\",\n    \"language\": \"en\",\n    \"description\": \"Navigation menu\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `menus.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menus",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menus"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Main Menu\",\n    \"location\": \"header\",\n    \"language\": \"en\",\n    \"description\": \"Navigation menu\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `menus.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/menus/{menu}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menus/:menu/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menus",
                                ":menu",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "menu",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `menus.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menus/:menu/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menus",
                                        ":menu",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "menu",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `menus.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/menus/{menu}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menus/:menu",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menus",
                                ":menu"
                            ],
                            "variable": [
                                {
                                    "key": "menu",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `menus.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menus/:menu",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menus",
                                        ":menu"
                                    ],
                                    "variable": [
                                        {
                                            "key": "menu",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `menus.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/menus/{menu}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menus/:menu",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menus",
                                ":menu"
                            ],
                            "variable": [
                                {
                                    "key": "menu",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Footer Menu\",\n    \"location\": \"footer\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `menus.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menus/:menu",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menus",
                                        ":menu"
                                    ],
                                    "variable": [
                                        {
                                            "key": "menu",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Footer Menu\",\n    \"location\": \"footer\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `menus.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/menus/{menu}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menus/:menu",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menus",
                                ":menu"
                            ],
                            "variable": [
                                {
                                    "key": "menu",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `menus.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menus/:menu",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menus",
                                        ":menu"
                                    ],
                                    "variable": [
                                        {
                                            "key": "menu",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `menus.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Menu Items",
            "item": [
                {
                    "name": "List/Show admin/menu-items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menu-items",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menu-items"
                            ]
                        },
                        "description": "Requires permission: `menus.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menu-items",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menu-items"
                                    ]
                                },
                                "description": "Requires permission: `menus.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/menu-items",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menu-items/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menu-items",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `menus.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menu-items/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menu-items",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `menus.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/menu-items",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menu-items",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menu-items"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"menu_id\": 1,\n    \"parent_id\": null,\n    \"label\": \"About Us\",\n    \"type\": \"custom\",\n    \"url\": \"/about\",\n    \"target\": \"_self\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `menus.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menu-items",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menu-items"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"menu_id\": 1,\n    \"parent_id\": null,\n    \"label\": \"About Us\",\n    \"type\": \"custom\",\n    \"url\": \"/about\",\n    \"target\": \"_self\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `menus.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/menu-items/{menu_item}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menu-items/:menu_item",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menu-items",
                                ":menu_item"
                            ],
                            "variable": [
                                {
                                    "key": "menu_item",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `menus.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menu-items/:menu_item",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menu-items",
                                        ":menu_item"
                                    ],
                                    "variable": [
                                        {
                                            "key": "menu_item",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `menus.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/menu-items/{menu_item}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menu-items/:menu_item",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menu-items",
                                ":menu_item"
                            ],
                            "variable": [
                                {
                                    "key": "menu_item",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"label\": \"Services\",\n    \"url\": \"/services\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `menus.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menu-items/:menu_item",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menu-items",
                                        ":menu_item"
                                    ],
                                    "variable": [
                                        {
                                            "key": "menu_item",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"label\": \"Services\",\n    \"url\": \"/services\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `menus.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/menu-items/{menu_item}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/menu-items/:menu_item",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "menu-items",
                                ":menu_item"
                            ],
                            "variable": [
                                {
                                    "key": "menu_item",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `menus.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/menu-items/:menu_item",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "menu-items",
                                        ":menu_item"
                                    ],
                                    "variable": [
                                        {
                                            "key": "menu_item",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `menus.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Widgets",
            "item": [
                {
                    "name": "List/Show admin/widgets",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/widgets",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "widgets"
                            ]
                        },
                        "description": "Requires permission: `widgets.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/widgets",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "widgets"
                                    ]
                                },
                                "description": "Requires permission: `widgets.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/widgets",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/widgets/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "widgets",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `widgets.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/widgets/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "widgets",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `widgets.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/widgets",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/widgets",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "widgets"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Latest News\",\n    \"language\": \"en\",\n    \"position\": \"sidebar\",\n    \"content_type\": \"html\",\n    \"content\": \"<div>content</div>\",\n    \"config\": [],\n    \"order\": 1,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `widgets.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/widgets",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "widgets"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Latest News\",\n    \"language\": \"en\",\n    \"position\": \"sidebar\",\n    \"content_type\": \"html\",\n    \"content\": \"<div>content</div>\",\n    \"config\": [],\n    \"order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `widgets.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/widgets/{widget}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/widgets/:widget/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "widgets",
                                ":widget",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "widget",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `widgets.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/widgets/:widget/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "widgets",
                                        ":widget",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "widget",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `widgets.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/widgets/{widget}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/widgets/:widget",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "widgets",
                                ":widget"
                            ],
                            "variable": [
                                {
                                    "key": "widget",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `widgets.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/widgets/:widget",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "widgets",
                                        ":widget"
                                    ],
                                    "variable": [
                                        {
                                            "key": "widget",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `widgets.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/widgets/{widget}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/widgets/:widget",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "widgets",
                                ":widget"
                            ],
                            "variable": [
                                {
                                    "key": "widget",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Quick Links\",\n    \"position\": \"footer\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `widgets.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/widgets/:widget",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "widgets",
                                        ":widget"
                                    ],
                                    "variable": [
                                        {
                                            "key": "widget",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Quick Links\",\n    \"position\": \"footer\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `widgets.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/widgets/{widget}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/widgets/:widget",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "widgets",
                                ":widget"
                            ],
                            "variable": [
                                {
                                    "key": "widget",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `widgets.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/widgets/:widget",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "widgets",
                                        ":widget"
                                    ],
                                    "variable": [
                                        {
                                            "key": "widget",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `widgets.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Social Media Links",
            "item": [
                {
                    "name": "List/Show admin/social-media-links",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/social-media-links",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "social-media-links"
                            ]
                        },
                        "description": "Requires permission: `social_media_links.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/social-media-links",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "social-media-links"
                                    ]
                                },
                                "description": "Requires permission: `social_media_links.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/social-media-links",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/social-media-links/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "social-media-links",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `social_media_links.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/social-media-links/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "social-media-links",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `social_media_links.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/social-media-links",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/social-media-links",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "social-media-links"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Twitter\",\n    \"platform\": \"twitter\",\n    \"url\": \"https://x.com/maaal\",\n    \"icon_type\": \"class\",\n    \"icon_class\": \"fa-brands fa-x-twitter\",\n    \"is_active\": true,\n    \"order\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `social_media_links.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/social-media-links",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "social-media-links"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Twitter\",\n    \"platform\": \"twitter\",\n    \"url\": \"https://x.com/maaal\",\n    \"icon_type\": \"class\",\n    \"icon_class\": \"fa-brands fa-x-twitter\",\n    \"is_active\": true,\n    \"order\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `social_media_links.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/social-media-links/{social_media_link}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/social-media-links/:social_media_link/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "social-media-links",
                                ":social_media_link",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "social_media_link",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `social_media_links.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/social-media-links/:social_media_link/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "social-media-links",
                                        ":social_media_link",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "social_media_link",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `social_media_links.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/social-media-links/{social_media_link}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/social-media-links/:social_media_link",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "social-media-links",
                                ":social_media_link"
                            ],
                            "variable": [
                                {
                                    "key": "social_media_link",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `social_media_links.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/social-media-links/:social_media_link",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "social-media-links",
                                        ":social_media_link"
                                    ],
                                    "variable": [
                                        {
                                            "key": "social_media_link",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `social_media_links.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/social-media-links/{social_media_link}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/social-media-links/:social_media_link",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "social-media-links",
                                ":social_media_link"
                            ],
                            "variable": [
                                {
                                    "key": "social_media_link",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"url\": \"https://x.com/maaal_news\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `social_media_links.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/social-media-links/:social_media_link",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "social-media-links",
                                        ":social_media_link"
                                    ],
                                    "variable": [
                                        {
                                            "key": "social_media_link",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"url\": \"https://x.com/maaal_news\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `social_media_links.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/social-media-links/{social_media_link}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/social-media-links/:social_media_link",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "social-media-links",
                                ":social_media_link"
                            ],
                            "variable": [
                                {
                                    "key": "social_media_link",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `social_media_links.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/social-media-links/:social_media_link",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "social-media-links",
                                        ":social_media_link"
                                    ],
                                    "variable": [
                                        {
                                            "key": "social_media_link",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `social_media_links.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Fonts",
            "item": [
                {
                    "name": "List/Show admin/fonts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/fonts",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "fonts"
                            ]
                        },
                        "description": "Requires permission: `fonts.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/fonts",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "fonts"
                                    ]
                                },
                                "description": "Requires permission: `fonts.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/fonts",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/fonts",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "fonts"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Primary Font\",\n    \"font_family\": \"Tajawal\",\n    \"source\": \"google\",\n    \"url\": \"https://fonts.google.com/specimen/Tajawal\",\n    \"font_files\": [],\n    \"weights\": [\n        400,\n        500,\n        700\n    ],\n    \"is_default\": true,\n    \"is_active\": true,\n    \"order\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `fonts.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/fonts",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "fonts"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Primary Font\",\n    \"font_family\": \"Tajawal\",\n    \"source\": \"google\",\n    \"url\": \"https://fonts.google.com/specimen/Tajawal\",\n    \"font_files\": [],\n    \"weights\": [\n        400,\n        500,\n        700\n    ],\n    \"is_default\": true,\n    \"is_active\": true,\n    \"order\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `fonts.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/fonts/{font}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/fonts/:font/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "fonts",
                                ":font",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "font",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `fonts.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/fonts/:font/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "fonts",
                                        ":font",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "font",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `fonts.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Set Default — admin/fonts/{font}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/fonts/:font/set-default",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "fonts",
                                ":font",
                                "set-default"
                            ],
                            "variable": [
                                {
                                    "key": "font",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `fonts.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/fonts/:font/set-default",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "fonts",
                                        ":font",
                                        "set-default"
                                    ],
                                    "variable": [
                                        {
                                            "key": "font",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `fonts.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/fonts/{font}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/fonts/:font",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "fonts",
                                ":font"
                            ],
                            "variable": [
                                {
                                    "key": "font",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `fonts.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/fonts/:font",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "fonts",
                                        ":font"
                                    ],
                                    "variable": [
                                        {
                                            "key": "font",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `fonts.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/fonts/{font}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/fonts/:font",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "fonts",
                                ":font"
                            ],
                            "variable": [
                                {
                                    "key": "font",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"font_family\": \"Cairo\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `fonts.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/fonts/:font",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "fonts",
                                        ":font"
                                    ],
                                    "variable": [
                                        {
                                            "key": "font",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"font_family\": \"Cairo\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `fonts.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/fonts/{font}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/fonts/:font",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "fonts",
                                ":font"
                            ],
                            "variable": [
                                {
                                    "key": "font",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `fonts.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/fonts/:font",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "fonts",
                                        ":font"
                                    ],
                                    "variable": [
                                        {
                                            "key": "font",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `fonts.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Settings",
            "item": [
                {
                    "name": "List/Show admin/site-font-settings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/site-font-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "site-font-settings"
                            ]
                        },
                        "description": "Requires permission: `fonts.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/site-font-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "site-font-settings"
                                    ]
                                },
                                "description": "Requires permission: `fonts.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show admin/company-settings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/company-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "company-settings"
                            ]
                        },
                        "description": "Requires permission: `company_settings.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/company-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "company-settings"
                                    ]
                                },
                                "description": "Requires permission: `company_settings.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show admin/home-settings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/home-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "home-settings"
                            ]
                        },
                        "description": "Requires permission: `home_settings.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/home-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "home-settings"
                                    ]
                                },
                                "description": "Requires permission: `home_settings.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show admin/site-settings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/site-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "site-settings"
                            ]
                        },
                        "description": "Requires permission: `site_settings.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/site-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "site-settings"
                                    ]
                                },
                                "description": "Requires permission: `site_settings.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show admin/tracking-settings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tracking-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tracking-settings"
                            ]
                        },
                        "description": "Requires permission: `tracking_settings.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tracking-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tracking-settings"
                                    ]
                                },
                                "description": "Requires permission: `tracking_settings.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show admin/about",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about"
                            ]
                        },
                        "description": "Requires permission: `about.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about"
                                    ]
                                },
                                "description": "Requires permission: `about.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "List/Show admin/about-info-cards",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about-info-cards",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about-info-cards"
                            ]
                        },
                        "description": "Requires permission: `about.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about-info-cards",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about-info-cards"
                                    ]
                                },
                                "description": "Requires permission: `about.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/site-font-settings",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/site-font-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "site-font-settings"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"language\": \"en\",\n    \"primary_font_id\": 1,\n    \"secondary_font_id\": 2,\n    \"tertiary_font_id\": 3\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `fonts.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/site-font-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "site-font-settings"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"language\": \"en\",\n    \"primary_font_id\": 1,\n    \"secondary_font_id\": 2,\n    \"tertiary_font_id\": 3\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `fonts.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/company-settings",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/company-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "company-settings"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Maaal Holding\",\n    \"license_number\": \"1010xxxxxx\",\n    \"company_email\": \"info@maaal.com\",\n    \"company_phone\": \"920000000\",\n    \"company_phone_country_code\": \"+966\",\n    \"city\": \"Riyadh\",\n    \"address\": \"Al Olaya District\",\n    \"map_lat\": 24.7135999999999995679900166578590869903564453125,\n    \"map_lng\": 46.67530000000000001136868377216160297393798828125\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `company_settings.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/company-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "company-settings"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Maaal Holding\",\n    \"license_number\": \"1010xxxxxx\",\n    \"company_email\": \"info@maaal.com\",\n    \"company_phone\": \"920000000\",\n    \"company_phone_country_code\": \"+966\",\n    \"city\": \"Riyadh\",\n    \"address\": \"Al Olaya District\",\n    \"map_lat\": 24.7135999999999995679900166578590869903564453125,\n    \"map_lng\": 46.67530000000000001136868377216160297393798828125\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `company_settings.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/home-settings",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/home-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "home-settings"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"hero_title\": \"Maaal Holding\",\n    \"hero_subtitle\": \"Shaping the economic future\",\n    \"about_heading\": \"About Us\",\n    \"services_heading\": \"Our Services\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `home_settings.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/home-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "home-settings"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"hero_title\": \"Maaal Holding\",\n    \"hero_subtitle\": \"Shaping the economic future\",\n    \"about_heading\": \"About Us\",\n    \"services_heading\": \"Our Services\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `home_settings.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/site-settings",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/site-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "site-settings"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"custom_css\": \"body{}\",\n    \"header_html\": \"\",\n    \"footer_html\": \"\",\n    \"cache_enabled\": false,\n    \"cookie_banner_enabled\": true,\n    \"smtp_host\": \"smtp.mailtrap.io\",\n    \"smtp_port\": 587,\n    \"smtp_username\": \"user\",\n    \"smtp_password\": \"pass\",\n    \"mail_from_email\": \"no-reply@maaal.com\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `site_settings.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/site-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "site-settings"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"custom_css\": \"body{}\",\n    \"header_html\": \"\",\n    \"footer_html\": \"\",\n    \"cache_enabled\": false,\n    \"cookie_banner_enabled\": true,\n    \"smtp_host\": \"smtp.mailtrap.io\",\n    \"smtp_port\": 587,\n    \"smtp_username\": \"user\",\n    \"smtp_password\": \"pass\",\n    \"mail_from_email\": \"no-reply@maaal.com\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `site_settings.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/tracking-settings",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tracking-settings",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tracking-settings"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"ga_enabled\": true,\n    \"ga_property_id\": \"G-XXXXXXX\",\n    \"google_tag_id\": \"GTM-XXXX\",\n    \"site_title\": \"Maaal Holding\",\n    \"seo_keywords\": \"economy, finance, investment\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `tracking_settings.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tracking-settings",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tracking-settings"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"ga_enabled\": true,\n    \"ga_property_id\": \"G-XXXXXXX\",\n    \"google_tag_id\": \"GTM-XXXX\",\n    \"site_title\": \"Maaal Holding\",\n    \"seo_keywords\": \"economy, finance, investment\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `tracking_settings.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Generate Sitemap — admin/tracking-settings",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/tracking-settings/generate-sitemap",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "tracking-settings",
                                "generate-sitemap"
                            ]
                        },
                        "description": "Requires permission: `tracking_settings.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/tracking-settings/generate-sitemap",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "tracking-settings",
                                        "generate-sitemap"
                                    ]
                                },
                                "description": "Requires permission: `tracking_settings.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/about",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"hero_title\": \"About Us\",\n    \"hero_subtitle\": \"Get to know Maaal\",\n    \"intro_heading\": \"Overview\",\n    \"intro_body\": \"content\",\n    \"metrics_years\": 50\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `about.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"hero_title\": \"About Us\",\n    \"hero_subtitle\": \"Get to know Maaal\",\n    \"intro_heading\": \"Overview\",\n    \"intro_body\": \"content\",\n    \"metrics_years\": 50\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `about.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Reorder — admin/about-info-cards",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about-info-cards/reorder",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about-info-cards",
                                "reorder"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `about.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about-info-cards/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about-info-cards",
                                        "reorder"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"order\": 0\n        },\n        {\n            \"id\": 2,\n            \"order\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `about.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/about-info-cards",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about-info-cards",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about-info-cards"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Our Vision\",\n    \"body\": \"To be the leading economic reference.\",\n    \"type\": \"vision\",\n    \"icon\": \"icon-eye\",\n    \"background_color\": \"#0EA5E9\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `about.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about-info-cards",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about-info-cards"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Our Vision\",\n    \"body\": \"To be the leading economic reference.\",\n    \"type\": \"vision\",\n    \"icon\": \"icon-eye\",\n    \"background_color\": \"#0EA5E9\",\n    \"order\": 1,\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `about.edit`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/about-info-cards/{about_info_card}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about-info-cards/:about_info_card/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about-info-cards",
                                ":about_info_card",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "about_info_card",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `about.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about-info-cards/:about_info_card/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about-info-cards",
                                        ":about_info_card",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "about_info_card",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `about.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/about-info-cards/{about_info_card}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about-info-cards/:about_info_card",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about-info-cards",
                                ":about_info_card"
                            ],
                            "variable": [
                                {
                                    "key": "about_info_card",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `about.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about-info-cards/:about_info_card",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about-info-cards",
                                        ":about_info_card"
                                    ],
                                    "variable": [
                                        {
                                            "key": "about_info_card",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `about.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/about-info-cards/{about_info_card}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about-info-cards/:about_info_card",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about-info-cards",
                                ":about_info_card"
                            ],
                            "variable": [
                                {
                                    "key": "about_info_card",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Our Mission\",\n    \"type\": \"mission\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `about.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about-info-cards/:about_info_card",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about-info-cards",
                                        ":about_info_card"
                                    ],
                                    "variable": [
                                        {
                                            "key": "about_info_card",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Our Mission\",\n    \"type\": \"mission\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `about.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/about-info-cards/{about_info_card}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/about-info-cards/:about_info_card",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "about-info-cards",
                                ":about_info_card"
                            ],
                            "variable": [
                                {
                                    "key": "about_info_card",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `about.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/about-info-cards/:about_info_card",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "about-info-cards",
                                        ":about_info_card"
                                    ],
                                    "variable": [
                                        {
                                            "key": "about_info_card",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `about.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin / Maintenance Modes",
            "item": [
                {
                    "name": "List/Show admin/maintenance-modes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/maintenance-modes",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "maintenance-modes"
                            ]
                        },
                        "description": "Requires permission: `maintenance.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/maintenance-modes",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "maintenance-modes"
                                    ]
                                },
                                "description": "Requires permission: `maintenance.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": [\n        {\n            \"id\": 1\n        }\n    ],\n    \"errors\": null,\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 15,\n        \"total\": 1,\n        \"last_page\": 1,\n        \"from\": 1,\n        \"to\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create admin/maintenance-modes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/maintenance-modes",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "maintenance-modes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"page_name\": \"Home Page\",\n    \"language\": \"en\",\n    \"title\": \"Site Under Maintenance\",\n    \"description\": \"Sorry, the site is temporarily under maintenance.\",\n    \"is_active\": false\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `maintenance.create`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/maintenance-modes",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "maintenance-modes"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"page_name\": \"Home Page\",\n    \"language\": \"en\",\n    \"title\": \"Site Under Maintenance\",\n    \"description\": \"Sorry, the site is temporarily under maintenance.\",\n    \"is_active\": false\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `maintenance.create`"
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Toggle Status — admin/maintenance-modes/{maintenance_mode}",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/maintenance-modes/:maintenance_mode/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "maintenance-modes",
                                ":maintenance_mode",
                                "toggle-status"
                            ],
                            "variable": [
                                {
                                    "key": "maintenance_mode",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `maintenance.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/maintenance-modes/:maintenance_mode/toggle-status",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "maintenance-modes",
                                        ":maintenance_mode",
                                        "toggle-status"
                                    ],
                                    "variable": [
                                        {
                                            "key": "maintenance_mode",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `maintenance.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show admin/maintenance-modes/{maintenance_mode}",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/maintenance-modes/:maintenance_mode",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "maintenance-modes",
                                ":maintenance_mode"
                            ],
                            "variable": [
                                {
                                    "key": "maintenance_mode",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `maintenance.view`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/maintenance-modes/:maintenance_mode",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "maintenance-modes",
                                        ":maintenance_mode"
                                    ],
                                    "variable": [
                                        {
                                            "key": "maintenance_mode",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `maintenance.view`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update admin/maintenance-modes/{maintenance_mode}",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/maintenance-modes/:maintenance_mode",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "maintenance-modes",
                                ":maintenance_mode"
                            ],
                            "variable": [
                                {
                                    "key": "maintenance_mode",
                                    "value": "1"
                                }
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Scheduled Maintenance\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "description": "Requires permission: `maintenance.edit`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/maintenance-modes/:maintenance_mode",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "maintenance-modes",
                                        ":maintenance_mode"
                                    ],
                                    "variable": [
                                        {
                                            "key": "maintenance_mode",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"Scheduled Maintenance\",\n    \"is_active\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Requires permission: `maintenance.edit`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete admin/maintenance-modes/{maintenance_mode}",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/admin/maintenance-modes/:maintenance_mode",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "maintenance-modes",
                                ":maintenance_mode"
                            ],
                            "variable": [
                                {
                                    "key": "maintenance_mode",
                                    "value": "1"
                                }
                            ]
                        },
                        "description": "Requires permission: `maintenance.delete`"
                    },
                    "response": [
                        {
                            "name": "Example Response (Success)",
                            "originalRequest": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/admin/maintenance-modes/:maintenance_mode",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "admin",
                                        "maintenance-modes",
                                        ":maintenance_mode"
                                    ],
                                    "variable": [
                                        {
                                            "key": "maintenance_mode",
                                            "value": "1"
                                        }
                                    ]
                                },
                                "description": "Requires permission: `maintenance.delete`"
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "_postman_previewlanguage": "json",
                            "body": "{\n    \"success\": true,\n    \"message\": \"Operation completed successfully\",\n    \"data\": {\n        \"id\": 1\n    },\n    \"errors\": null,\n    \"meta\": null\n}"
                        }
                    ]
                }
            ]
        }
    ]
}