{
    "info": {
        "name": "Lam-SAR Website API",
        "_postman_id": "ae4caf97-aeb9-4881-adbd-bb137a06a13a",
        "description": "# Lam-SAR Website API\n\n**Base URL:** `{{base_url}}` (افتراضي `https://dev-lam.maaal.site`).\n- 🌐 الموقع العام: `{{base_url}}/api/...` — بدون مصادقة.\n- 🖥️ الداشبورد: `{{base_url}}/api/dashboard/...` — تتطلب توكن.\n\n## المصادقة\nBearer token على مستوى الـ collection: `Authorization: Bearer {{token}}`. سجّل الدخول من **Authentication → Login** والتوكن بيتحفظ في متغير `{{token}}`.\n\n## الهيدرز\n- `Accept: application/json` (إلزامي).\n- `Accept-Language: ar` أو `en` — بيحدد لغة الحقول المسطّحة (الترجمات الكاملة بترجع دايمًا في `translations`).\n\n## شكل الاستجابة الموحّد\n- **نجاح:** `{ \"status\": true, \"data\": {...}, \"message\": ..., \"code\": 200 }`\n- **قائمة:** `data` = `{ \"list\": [...], \"paginator\": { total_count, total_pages, current_page, per_page } }`\n- **غير موجود:** `{ \"status\": true, \"data\": null, \"message\": ..., \"code\": 404 }`\n- **خطأ/Validation:** `{ \"status\": false, \"errors\": {...}, \"message\": ..., \"code\": 4xx }` — اقرأ من `errors` مش `data`.\n\n## تغييرات العقد المهمة (آخر تحديث)\n1. **المستخدم:** `role` بقى كائن `{id,name}` (مش string) + `role_id` + `permissions` (أسماء).\n2. **الترجمات:** Category / Tag / News / User بترجّع كائن `translations` فيه `ar` و`en` معًا — استخدمه لفورم التعديل (مثل `translations.en.description`).\n3. **صلاحيات الدور:** ابعت `permissions` كمصفوفة **أسماء** زي ما بترجع من `GET /dashboard/permissions` (مثل `create category`) — **مش IDs**.\n4. **News:** ابعت `sub_category_id` (رقم) مش `sub_category`؛ وحقول الـ meta متعددة اللغات متداخلة `translations[en][meta_title]`.\n5. **Category:** ابعت `parent_id` بالاسم ده بالظبط للتصنيف الرئيسي.\n\n## موجود بالفعل\n- Custom CSS/JS/HTML: `POST create-style` + `GET get-style?type=html|css|js`.\n- صورة فريق العمل: حقل `image` في `get-teamwork`.",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{token}}",
                "type": "string"
            }
        ]
    },
    "variable": [
        {
            "id": "7cc0a157-ffba-4718-8c67-a8b64d727db2",
            "key": "base_url",
            "value": "https://dev-lam.maaal.site",
            "type": "string",
            "disabled": false,
            "initialValue": "https://dev-lam.maaal.site",
            "currentValue": "https://dev-lam.maaal.site",
            "description": "API root without trailing slash"
        },
        {
            "id": "2a964f29-767c-4221-98ac-912497bfc349",
            "key": "token",
            "value": "",
            "type": "string",
            "disabled": false,
            "initialValue": "",
            "currentValue": "",
            "description": "Filled automatically after Login"
        }
    ],
    "item": [
        {
            "name": "🌐 Website API",
            "description": "Public site — {{base_url}}/api — no auth",
            "item": [
                {
                    "name": "Create Contact Us",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": "{{base_url}}/api/create-contact-us",
                        "auth": {
                            "type": "noauth"
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n  \"name\": \"Ahmed Ali\",\n  \"email\": \"ahmed@example.com\",\n  \"code\": \"+966\",\n  \"phone\": \"501234567\",\n  \"message\": \"I would like more information about your services.\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "Success",
                            "status": "OK",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"سيتم التواصل معكم قريبا شكرا لكم\",\n  \"code\": 200\n}",
                            "originalRequest": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/create-contact-us",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"name\": \"Ahmed Ali\",\n  \"email\": \"ahmed@example.com\",\n  \"code\": \"+966\",\n  \"phone\": \"501234567\",\n  \"message\": \"I would like more information about your services.\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "auth": {
                                    "type": "noauth"
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Get LFII (Public)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": "{{base_url}}/api/get-lfii?per_page=10",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Success",
                            "status": "OK",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"title\": \"LFII Article\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"News retrieved successfully.\",\n  \"code\": 200\n}",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/get-lfii?per_page=10",
                                "auth": {
                                    "type": "noauth"
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Get Blog (Public)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": "{{base_url}}/api/get-blog?per_page=10",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Success",
                            "status": "OK",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"title\": \"Blog Post\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"News retrieved successfully.\",\n  \"code\": 200\n}",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/get-blog?per_page=10",
                                "auth": {
                                    "type": "noauth"
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Get Team Work (Public)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": "{{base_url}}/api/get-teamwork?per_page=10",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "name": "Success",
                            "status": "OK",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"first_name\": \"John\",\n        \"role\": \"Team Work\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                            "originalRequest": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/get-teamwork?per_page=10",
                                "auth": {
                                    "type": "noauth"
                                }
                            }
                        }
                    ]
                }
            ]
        },
        {
            "name": "🖥️ Dashboard API",
            "description": "Admin — {{base_url}}/api/dashboard — login first",
            "item": [
                {
                    "name": "🔑 Authentication",
                    "item": [
                        {
                            "name": "Login",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/login",
                                "auth": {
                                    "type": "noauth"
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"user_name\": \"admin\",\n  \"password\": \"password123\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"user_name\": \"admin\",\n    \"email\": \"admin@example.com\",\n    \"token\": \"1|exampleSanctumToken\",\n    \"role\": \"Admin\"\n  },\n  \"message\": \"Login successful\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/login",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"user_name\": \"admin\",\n  \"password\": \"password123\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        },
                                        "auth": {
                                            "type": "noauth"
                                        }
                                    }
                                }
                            ],
                            "event": [
                                {
                                    "listen": "test",
                                    "script": {
                                        "type": "text/javascript",
                                        "exec": [
                                            "var json = pm.response.json();",
                                            "if (json.status && json.data && json.data.token) {",
                                            "    pm.collectionVariables.set('token', json.data.token);",
                                            "    if (pm.environment) {",
                                            "        pm.environment.set('token', json.data.token);",
                                            "    }",
                                            "}"
                                        ]
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Login (Phone)",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/login",
                                "auth": {
                                    "type": "noauth"
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"phone\": \"0501234567\",\n  \"password\": \"password123\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "Login using phone instead of user_name"
                            }
                        },
                        {
                            "name": "Forgot Password",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/forgot",
                                "auth": {
                                    "type": "noauth"
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"method\": \"email\",\n  \"email\": \"admin@example.com\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"verification_id\": \"abc-123\"\n  },\n  \"message\": \"Check your email\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/forgot",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"method\": \"email\",\n  \"email\": \"admin@example.com\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        },
                                        "auth": {
                                            "type": "noauth"
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Forgot Password (Phone)",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/forgot",
                                "auth": {
                                    "type": "noauth"
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"method\": \"phone\",\n  \"phone\": \"0501234567\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            }
                        },
                        {
                            "name": "Reset (Verify Code)",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/reset",
                                "auth": {
                                    "type": "noauth"
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"method\": \"email\",\n  \"email\": \"admin@example.com\",\n  \"code\": \"12345\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"verification_id\": \"verified-id\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/reset",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"method\": \"email\",\n  \"email\": \"admin@example.com\",\n  \"code\": \"12345\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        },
                                        "auth": {
                                            "type": "noauth"
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Reset Password",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/reset-password",
                                "auth": {
                                    "type": "noauth"
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"password\": \"newpassword123\",\n  \"password_confirmation\": \"newpassword123\",\n  \"verification_id\": \"verified-id\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Password updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/reset-password",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"password\": \"newpassword123\",\n  \"password_confirmation\": \"newpassword123\",\n  \"verification_id\": \"verified-id\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        },
                                        "auth": {
                                            "type": "noauth"
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "👤 Account Management",
                    "item": [
                        {
                            "name": "Change Contact (Email)",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/change-contact",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"email\",\n  \"new_email\": \"newemail@example.com\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Verification email sent\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/change-contact",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"type\": \"email\",\n  \"new_email\": \"newemail@example.com\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Change Contact (Phone)",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/change-contact",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"phone\",\n  \"new_phone\": \"0509876543\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            }
                        },
                        {
                            "name": "Verify Contact Change",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/verify-contact",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"verification_code\": \"12345\",\n  \"type\": \"email\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Email changed\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/verify-contact",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"verification_code\": \"12345\",\n  \"type\": \"email\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Profile",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/update-profile",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "first_name",
                                            "value": "Ahmed",
                                            "type": "text"
                                        },
                                        {
                                            "key": "last_name",
                                            "value": "Ali",
                                            "type": "text"
                                        },
                                        {
                                            "key": "gender",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "linkedIn_link",
                                            "value": "ahmed-ali",
                                            "type": "text"
                                        },
                                        {
                                            "key": "x_link",
                                            "value": "ahmedali",
                                            "type": "text"
                                        },
                                        {
                                            "key": "image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"first_name\": \"Ahmed\"\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/update-profile",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "first_name",
                                                    "value": "Ahmed",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "last_name",
                                                    "value": "Ali",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "gender",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "linkedIn_link",
                                                    "value": "ahmed-ali",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "x_link",
                                                    "value": "ahmedali",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Password",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/update-password",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"current_password\": \"oldpassword123\",\n  \"password\": \"newpassword123\",\n  \"password_confirmation\": \"newpassword123\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/update-password",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"current_password\": \"oldpassword123\",\n  \"password\": \"newpassword123\",\n  \"password_confirmation\": \"newpassword123\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "📊 Statistics",
                    "item": [
                        {
                            "name": "LFII Statistics Count",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/lfii-statistics"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"allnews\": 10,\n    \"schudlenews\": 2,\n    \"activenews\": 6,\n    \"disablednews\": 1,\n    \"draftnews\": 1\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/lfii-statistics"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Latest LFII",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/latest-lfii"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"title\": \"Latest LFII\"\n    }\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/latest-lfii"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Ticket Statistics Count",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/ticket-statistics"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"allcount\": 5,\n    \"completed\": 3,\n    \"uncompleted\": 2\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/ticket-statistics"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Latest Tickets",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/latest-ticket"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"Ahmed\",\n      \"status\": 0\n    }\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/latest-ticket"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "👥 Users",
                    "item": [
                        {
                            "name": "List Users",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/user?page=1&per_page=10",
                                "description": "قائمة المستخدمين (مصفّحة).\n\n**Query:** `page`, `per_page`.\n\n**الاستجابة:** `data.list[]` كل عنصر = كائن المستخدم الكامل (شوف Get User)، مع `data.paginator`."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"user_name\": \"admin\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/user?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create User",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/user",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "user_name",
                                            "value": "newuser",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][first_name]",
                                            "value": "John",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][last_name]",
                                            "value": "Doe",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][first_name]",
                                            "value": "جون",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][last_name]",
                                            "value": "دو",
                                            "type": "text"
                                        },
                                        {
                                            "key": "email",
                                            "value": "newuser@example.com",
                                            "type": "text"
                                        },
                                        {
                                            "key": "password",
                                            "value": "password123",
                                            "type": "text"
                                        },
                                        {
                                            "key": "password_confirmation",
                                            "value": "password123",
                                            "type": "text"
                                        },
                                        {
                                            "key": "phone",
                                            "value": "0501234567",
                                            "type": "text"
                                        },
                                        {
                                            "key": "gender",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_notify",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "status",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "role",
                                            "value": "Editor",
                                            "type": "text",
                                            "description": "اسم الدور (مش id). اختياري."
                                        },
                                        {
                                            "key": "image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                },
                                "description": "إنشاء مستخدم — `form-data`.\n\n**مطلوب:** `user_name`، `translations[en][first_name]`، `translations[en][last_name]`، `translations[ar][first_name]`، `translations[ar][last_name]`، `email`، `password`+`password_confirmation` (≥8)، `phone`، `gender` (0/1)، `is_notify` (0/1)، `status` (0/1).\n**اختياري:** `role` (اسم الدور — **مش id**)، `name`، `date_of_birth` (Y-m-d)، `image` (ملف).\n\n**الاستجابة:** كائن المستخدم الكامل."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"slug\": \"john-doe\",\n        \"email\": \"john@example.com\",\n        \"role\": {\n            \"id\": 2,\n            \"name\": \"Editor\"\n        },\n        \"role_id\": 2,\n        \"permissions\": [\n            \"create category\",\n            \"edit category\",\n            \"show category\"\n        ],\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"translations\": {\n            \"ar\": {\n                \"first_name\": \"جون\",\n                \"last_name\": \"دو\",\n                \"slug\": \"john-doe\"\n            },\n            \"en\": {\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"slug\": \"john-doe\"\n            }\n        },\n        \"user_name\": \"john_doe\",\n        \"code\": null,\n        \"phone\": \"0501234567\",\n        \"token\": null,\n        \"linkedIn_link\": null,\n        \"x_link\": null,\n        \"gender\": 1,\n        \"date_of_birth\": \"1990-01-01\",\n        \"status\": 1,\n        \"image\": \"https://dev-lam.maaal.site/storage/uploads/photos/users/2026-06/abc.jpg\",\n        \"created_at\": \"2026-06-04 12:00\"\n    },\n    \"message\": \"Created\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/user",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "user_name",
                                                    "value": "newuser",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][first_name]",
                                                    "value": "John",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][last_name]",
                                                    "value": "Doe",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][first_name]",
                                                    "value": "جون",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][last_name]",
                                                    "value": "دو",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "email",
                                                    "value": "newuser@example.com",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "password",
                                                    "value": "password123",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "password_confirmation",
                                                    "value": "password123",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "phone",
                                                    "value": "0501234567",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "gender",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_notify",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "status",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "role",
                                                    "value": "Editor",
                                                    "type": "text",
                                                    "description": "اسم الدور (مش id). اختياري."
                                                },
                                                {
                                                    "key": "image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get User",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/user/1",
                                "description": "تفاصيل مستخدم.\n\n**الاستجابة:** `role` = كائن `{id,name}` (أو null)، `role_id`، `permissions` = مصفوفة أسماء، `translations.{ar,en}` = `{first_name,last_name,slug}`، + الحقول المسطّحة باللغة النشطة."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"slug\": \"john-doe\",\n        \"email\": \"john@example.com\",\n        \"role\": {\n            \"id\": 2,\n            \"name\": \"Editor\"\n        },\n        \"role_id\": 2,\n        \"permissions\": [\n            \"create category\",\n            \"edit category\",\n            \"show category\"\n        ],\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"translations\": {\n            \"ar\": {\n                \"first_name\": \"جون\",\n                \"last_name\": \"دو\",\n                \"slug\": \"john-doe\"\n            },\n            \"en\": {\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"slug\": \"john-doe\"\n            }\n        },\n        \"user_name\": \"john_doe\",\n        \"code\": null,\n        \"phone\": \"0501234567\",\n        \"token\": null,\n        \"linkedIn_link\": null,\n        \"x_link\": null,\n        \"gender\": 1,\n        \"date_of_birth\": \"1990-01-01\",\n        \"status\": 1,\n        \"image\": \"https://dev-lam.maaal.site/storage/uploads/photos/users/2026-06/abc.jpg\",\n        \"created_at\": \"2026-06-04 12:00\"\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/user/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update User",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/user/1",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][first_name]",
                                            "value": "John",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][last_name]",
                                            "value": "Doe",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][first_name]",
                                            "value": "جون",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][last_name]",
                                            "value": "دو",
                                            "type": "text"
                                        },
                                        {
                                            "key": "user_name",
                                            "value": "john_doe",
                                            "type": "text"
                                        },
                                        {
                                            "key": "email",
                                            "value": "john@example.com",
                                            "type": "text"
                                        },
                                        {
                                            "key": "phone",
                                            "value": "0501234567",
                                            "type": "text"
                                        },
                                        {
                                            "key": "status",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "role",
                                            "value": "Editor",
                                            "type": "text"
                                        }
                                    ]
                                },
                                "description": "تعديل مستخدم — `form-data`.\n\n**مطلوب:** نفس حقول الترجمة، `user_name`، `email`، `phone`، `status`، و`password`+`password_confirmation` (مطلوبة إلا لو `writer`).\n**اختياري:** `role` (اسم الدور — **يستبدل** الدور الحالي بالكامل)، `date_of_birth`، `x_link`، `linkedIn_link`، `manager_image`...\n\n**الاستجابة:** كائن المستخدم الكامل."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"slug\": \"john-doe\",\n        \"email\": \"john@example.com\",\n        \"role\": {\n            \"id\": 2,\n            \"name\": \"Editor\"\n        },\n        \"role_id\": 2,\n        \"permissions\": [\n            \"create category\",\n            \"edit category\",\n            \"show category\"\n        ],\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"translations\": {\n            \"ar\": {\n                \"first_name\": \"جون\",\n                \"last_name\": \"دو\",\n                \"slug\": \"john-doe\"\n            },\n            \"en\": {\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"slug\": \"john-doe\"\n            }\n        },\n        \"user_name\": \"john_doe\",\n        \"code\": null,\n        \"phone\": \"0501234567\",\n        \"token\": null,\n        \"linkedIn_link\": null,\n        \"x_link\": null,\n        \"gender\": 1,\n        \"date_of_birth\": \"1990-01-01\",\n        \"status\": 1,\n        \"image\": \"https://dev-lam.maaal.site/storage/uploads/photos/users/2026-06/abc.jpg\",\n        \"created_at\": \"2026-06-04 12:00\"\n    },\n    \"message\": \"Updated\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/user/1",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][first_name]",
                                                    "value": "John",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][last_name]",
                                                    "value": "Doe",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][first_name]",
                                                    "value": "جون",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][last_name]",
                                                    "value": "دو",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "user_name",
                                                    "value": "john_doe",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "email",
                                                    "value": "john@example.com",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "phone",
                                                    "value": "0501234567",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "status",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "role",
                                                    "value": "Editor",
                                                    "type": "text"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete User",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/user/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/user/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Profile",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/profile",
                                "description": "بيانات المستخدم الحالي (نفس شكل Get User)."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"slug\": \"john-doe\",\n        \"email\": \"john@example.com\",\n        \"role\": {\n            \"id\": 2,\n            \"name\": \"Editor\"\n        },\n        \"role_id\": 2,\n        \"permissions\": [\n            \"create category\",\n            \"edit category\",\n            \"show category\"\n        ],\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"translations\": {\n            \"ar\": {\n                \"first_name\": \"جون\",\n                \"last_name\": \"دو\",\n                \"slug\": \"john-doe\"\n            },\n            \"en\": {\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"slug\": \"john-doe\"\n            }\n        },\n        \"user_name\": \"john_doe\",\n        \"code\": null,\n        \"phone\": \"0501234567\",\n        \"token\": null,\n        \"linkedIn_link\": null,\n        \"x_link\": null,\n        \"gender\": 1,\n        \"date_of_birth\": \"1990-01-01\",\n        \"status\": 1,\n        \"image\": \"https://dev-lam.maaal.site/storage/uploads/photos/users/2026-06/abc.jpg\",\n        \"created_at\": \"2026-06-04 12:00\"\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/profile"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "🏷️ Roles & Permissions",
                    "item": [
                        {
                            "name": "List Roles",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/role?page=1&per_page=10",
                                "description": "قائمة الأدوار (مصفّحة) — كل دور معاه `users_count`. (`permissions` بترجع كقائمة كاملة في **Get Role**.)"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"list\": [\n            {\n                \"id\": 2,\n                \"name\": \"Editor\",\n                \"guard_name\": \"sanctum\",\n                \"status\": 1,\n                \"users_count\": 3,\n                \"permissions\": [],\n                \"created_at\": \"2026-06-04T12:00:00.000000Z\",\n                \"updated_at\": \"2026-06-04T12:00:00.000000Z\"\n            }\n        ],\n        \"paginator\": {\n            \"total_count\": 1,\n            \"total_pages\": 1,\n            \"current_page\": 1,\n            \"per_page\": 10\n        }\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/role?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create Role",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/role",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"name\": \"Editor\",\n  \"permissions\": [\n    \"create category\",\n    \"edit category\",\n    \"show category\"\n  ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "إنشاء دور (JSON).\n\n**مطلوب:** `name` (فريد)، `permissions` = مصفوفة **أسماء** الصلاحيات (**مش IDs**) زي ما بترجع من `GET /permissions` (مثل `create category`, `edit user`).\n\nملاحظة: `POST` **يضيف** الصلاحيات. الدور يُنشأ بـ guard `sanctum` تلقائيًا."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Created\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/role",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"name\": \"Editor\",\n  \"permissions\": [\n    \"create category\",\n    \"edit category\",\n    \"show category\"\n  ]\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Role",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/role/1",
                                "description": "تفاصيل دور.\n\n**الاستجابة:** `id, name, guard_name, status, permissions` (مصفوفة **أسماء** صلاحيات الدور)، + `timestamps`. استخدم `permissions` لتعليم الصلاحيات المختارة في فورم التعديل."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Editor\",\n        \"guard_name\": \"sanctum\",\n        \"status\": 1,\n        \"permissions\": [\n            \"create category\",\n            \"edit category\",\n            \"show category\"\n        ],\n        \"created_at\": \"2026-06-04T12:00:00.000000Z\",\n        \"updated_at\": \"2026-06-04T12:00:00.000000Z\"\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/role/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Role",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/role/1",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"name\": \"Senior Editor\",\n  \"permissions\": [\n    \"create category\",\n    \"edit category\",\n    \"show category\",\n    \"delete category\"\n  ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "تعديل دور (JSON).\n\n**مطلوب:** `name`، `permissions` = مصفوفة **أسماء** (مش IDs).\n\nملاحظة: `PUT` **يستبدل** كل الصلاحيات (sync) — ابعتوا القائمة الكاملة المطلوبة."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/role/1",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"name\": \"Senior Editor\",\n  \"permissions\": [\n    \"create category\",\n    \"edit category\",\n    \"show category\",\n    \"delete category\"\n  ]\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete Role",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/role/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/role/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get All Roles (Dropdown)",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-role"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"Admin\"\n    }\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-role"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get All Permissions",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/permissions",
                                "description": "كل الصلاحيات مجمّعة بالأسماء (guard sanctum). **استخدموها كمصدر القيم** اللي تبعتوها في `permissions` عند إنشاء/تعديل الدور."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"user\": [\"create user\", \"edit user\", \"show user\", \"delete user\"],\n    \"category\": [\"create category\", \"edit category\", \"show category\", \"delete category\"],\n    \"tag\": [\"create tag\", \"edit tag\", \"show tag\", \"delete tag\"],\n    \"role\": [\"create role\", \"edit role\", \"show role\", \"delete role\"],\n    \"ticket\": [\"replay ticket\", \"show ticket\", \"delete ticket\"],\n    \"official\": [\"edit official\", \"show official\", \"delete official\"],\n    \"team work\": [\"edit team work\", \"show team work\", \"delete team work\"]\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/permissions"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Role Status",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/role-update-status",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"role_id\": 1,\n  \"status\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"status\": true\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/role-update-status",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"role_id\": 1,\n  \"status\": true\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "📂 Category",
                    "item": [
                        {
                            "name": "List Categories",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/category?page=1&per_page=10",
                                "description": "قائمة التصنيفات (مصفّحة) — كل عنصر فيه `translations.{ar,en}` و`parent_id`/`main_category` و`news_count`."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"list\": [\n            {\n                \"id\": 1,\n                \"name\": \"Technology\",\n                \"description\": \"Tech news\",\n                \"translations\": {\n                    \"ar\": {\n                        \"name\": \"تقنية\",\n                        \"description\": \"أخبار تقنية\",\n                        \"slug\": \"تقنية\"\n                    },\n                    \"en\": {\n                        \"name\": \"Technology\",\n                        \"description\": \"Tech news\",\n                        \"slug\": \"technology\"\n                    }\n                },\n                \"slug\": \"technology\",\n                \"user_created\": \"admin\",\n                \"parent_id\": null,\n                \"main_category\": null,\n                \"news_count\": 12,\n                \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n            }\n        ],\n        \"paginator\": {\n            \"total_count\": 1,\n            \"total_pages\": 1,\n            \"current_page\": 1,\n            \"per_page\": 10\n        }\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/category?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create Category",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/category",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][name]",
                                            "value": "Research",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][description]",
                                            "value": "Research category",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][name]",
                                            "value": "أبحاث",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][description]",
                                            "value": "فئة الأبحاث",
                                            "type": "text"
                                        },
                                        {
                                            "key": "parent_id",
                                            "value": "",
                                            "type": "text"
                                        }
                                    ]
                                },
                                "description": "إنشاء تصنيف.\n\n**مطلوب:** `translations[en][name]`، `translations[en][description]`، `translations[ar][name]`، `translations[ar][description]`.\n**اختياري:** `parent_id` (id تصنيف موجود — **بالاسم ده بالظبط** للتصنيف الفرعي)."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": \"Created\",\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/category",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][name]",
                                                    "value": "Research",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][description]",
                                                    "value": "Research category",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][name]",
                                                    "value": "أبحاث",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][description]",
                                                    "value": "فئة الأبحاث",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "parent_id",
                                                    "value": "",
                                                    "type": "text"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Category",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/category/1",
                                "description": "تفاصيل تصنيف.\n\n**الاستجابة:** `translations.{ar,en}` = `{name,description,slug}` (للحصول على `description_en` اقرأ `translations.en.description`)، `parent_id`، `main_category` (اسم الأب — للقراءة)."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Technology\",\n        \"description\": \"Tech news\",\n        \"translations\": {\n            \"ar\": {\n                \"name\": \"تقنية\",\n                \"description\": \"أخبار تقنية\",\n                \"slug\": \"تقنية\"\n            },\n            \"en\": {\n                \"name\": \"Technology\",\n                \"description\": \"Tech news\",\n                \"slug\": \"technology\"\n            }\n        },\n        \"slug\": \"technology\",\n        \"user_created\": \"admin\",\n        \"parent_id\": null,\n        \"main_category\": null,\n        \"news_count\": 12,\n        \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/category/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Category",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/category/1",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][name]",
                                            "value": "Research",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][description]",
                                            "value": "Research category",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][name]",
                                            "value": "أبحاث",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][description]",
                                            "value": "فئة الأبحاث",
                                            "type": "text"
                                        },
                                        {
                                            "key": "parent_id",
                                            "value": "",
                                            "type": "text"
                                        }
                                    ]
                                },
                                "description": "تعديل تصنيف.\n\n**مطلوب:** نفس حقول الترجمة. **اختياري:** `parent_id`.\n\n**الاستجابة:** كائن التصنيف الكامل مع `translations`."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Technology\",\n        \"description\": \"Tech news\",\n        \"translations\": {\n            \"ar\": {\n                \"name\": \"تقنية\",\n                \"description\": \"أخبار تقنية\",\n                \"slug\": \"تقنية\"\n            },\n            \"en\": {\n                \"name\": \"Technology\",\n                \"description\": \"Tech news\",\n                \"slug\": \"technology\"\n            }\n        },\n        \"slug\": \"technology\",\n        \"user_created\": \"admin\",\n        \"parent_id\": null,\n        \"main_category\": null,\n        \"news_count\": 12,\n        \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n    },\n    \"message\": \"Updated\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/category/1",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][name]",
                                                    "value": "Research",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][description]",
                                                    "value": "Research category",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][name]",
                                                    "value": "أبحاث",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][description]",
                                                    "value": "فئة الأبحاث",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "parent_id",
                                                    "value": "",
                                                    "type": "text"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete Category",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/category/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/category/1"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "🔬 LFII",
                    "item": [
                        {
                            "name": "List LFII",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/lfii?page=1&per_page=10"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"title\": \"LFII Article\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/lfii?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create LFII",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/lfii",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][title]",
                                            "value": "LFII Article Title",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][title]",
                                            "value": "عنوان مقال LFII",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_title]",
                                            "value": "Meta Title EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_title]",
                                            "value": "عنوان ميتا",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_description]",
                                            "value": "Meta description EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_description]",
                                            "value": "وصف ميتا",
                                            "type": "text"
                                        },
                                        {
                                            "key": "source",
                                            "value": "Source Name",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_featured",
                                            "value": "0",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_published",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "direction",
                                            "value": "rtl",
                                            "type": "text"
                                        },
                                        {
                                            "key": "category_id",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "sub_category_id",
                                            "value": "",
                                            "type": "text"
                                        },
                                        {
                                            "key": "tags[0]",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "tags[1]",
                                            "value": "2",
                                            "type": "text"
                                        },
                                        {
                                            "key": "main_image",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "meta_image",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "file",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Created\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/lfii",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][title]",
                                                    "value": "LFII Article Title",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][title]",
                                                    "value": "عنوان مقال LFII",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_title]",
                                                    "value": "Meta Title EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_title]",
                                                    "value": "عنوان ميتا",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_description]",
                                                    "value": "Meta description EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_description]",
                                                    "value": "وصف ميتا",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "source",
                                                    "value": "Source Name",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_featured",
                                                    "value": "0",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_published",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "direction",
                                                    "value": "rtl",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "category_id",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "sub_category_id",
                                                    "value": "",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "tags[0]",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "tags[1]",
                                                    "value": "2",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "main_image",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "meta_image",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "file",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get LFII",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/lfii/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"title\": \"LFII Article\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/lfii/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update LFII",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/lfii/1",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][title]",
                                            "value": "LFII Article Title",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][title]",
                                            "value": "عنوان مقال LFII",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_title]",
                                            "value": "Meta Title EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_title]",
                                            "value": "عنوان ميتا",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_description]",
                                            "value": "Meta description EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_description]",
                                            "value": "وصف ميتا",
                                            "type": "text"
                                        },
                                        {
                                            "key": "source",
                                            "value": "Source Name",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_featured",
                                            "value": "0",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_published",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "direction",
                                            "value": "rtl",
                                            "type": "text"
                                        },
                                        {
                                            "key": "category_id",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "sub_category_id",
                                            "value": "",
                                            "type": "text"
                                        },
                                        {
                                            "key": "tags[0]",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "tags[1]",
                                            "value": "2",
                                            "type": "text"
                                        },
                                        {
                                            "key": "main_image",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "meta_image",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "file",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/lfii/1",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][title]",
                                                    "value": "LFII Article Title",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][title]",
                                                    "value": "عنوان مقال LFII",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_title]",
                                                    "value": "Meta Title EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_title]",
                                                    "value": "عنوان ميتا",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_description]",
                                                    "value": "Meta description EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_description]",
                                                    "value": "وصف ميتا",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "source",
                                                    "value": "Source Name",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_featured",
                                                    "value": "0",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_published",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "direction",
                                                    "value": "rtl",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "category_id",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "sub_category_id",
                                                    "value": "",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "tags[0]",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "tags[1]",
                                                    "value": "2",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "main_image",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "meta_image",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "file",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete LFII",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/lfii/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/lfii/1"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "🏷️ Tags",
                    "item": [
                        {
                            "name": "List Tags",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/tag?page=1&per_page=10",
                                "description": "قائمة الوسوم (مصفّحة) — كل عنصر فيه `translations.{ar,en}`."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"list\": [\n            {\n                \"id\": 1,\n                \"name\": \"Laravel\",\n                \"language\": null,\n                \"slug\": \"laravel\",\n                \"user_created\": \"admin\",\n                \"user_id\": 1,\n                \"description\": \"Laravel posts\",\n                \"translations\": {\n                    \"ar\": {\n                        \"name\": \"لارافيل\",\n                        \"description\": \"منشورات لارافيل\",\n                        \"slug\": \"لارافيل\"\n                    },\n                    \"en\": {\n                        \"name\": \"Laravel\",\n                        \"description\": \"Laravel posts\",\n                        \"slug\": \"laravel\"\n                    }\n                },\n                \"count_news\": 5,\n                \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n            }\n        ],\n        \"paginator\": {\n            \"total_count\": 1,\n            \"total_pages\": 1,\n            \"current_page\": 1,\n            \"per_page\": 10\n        }\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/tag?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create Tag",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/tag",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][name]",
                                            "value": "Science",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][description]",
                                            "value": "Science tag",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][name]",
                                            "value": "علوم",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][description]",
                                            "value": "وسم العلوم",
                                            "type": "text"
                                        }
                                    ]
                                },
                                "description": "إنشاء وسم.\n\n**مطلوب:** `translations[en][name]`، `translations[en][description]`، `translations[ar][name]`، `translations[ar][description]`.\n\n**الاستجابة:** كائن الوسم مع `translations`."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Laravel\",\n        \"language\": null,\n        \"slug\": \"laravel\",\n        \"user_created\": \"admin\",\n        \"user_id\": 1,\n        \"description\": \"Laravel posts\",\n        \"translations\": {\n            \"ar\": {\n                \"name\": \"لارافيل\",\n                \"description\": \"منشورات لارافيل\",\n                \"slug\": \"لارافيل\"\n            },\n            \"en\": {\n                \"name\": \"Laravel\",\n                \"description\": \"Laravel posts\",\n                \"slug\": \"laravel\"\n            }\n        },\n        \"count_news\": 5,\n        \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n    },\n    \"message\": \"Created\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/tag",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][name]",
                                                    "value": "Science",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][description]",
                                                    "value": "Science tag",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][name]",
                                                    "value": "علوم",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][description]",
                                                    "value": "وسم العلوم",
                                                    "type": "text"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Tag",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/tag/1",
                                "description": "تفاصيل وسم.\n\n**الاستجابة:** `translations.{ar,en}` = `{name,description,slug}` (للإنجليزي اقرأ `translations.en.*`)."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Laravel\",\n        \"language\": null,\n        \"slug\": \"laravel\",\n        \"user_created\": \"admin\",\n        \"user_id\": 1,\n        \"description\": \"Laravel posts\",\n        \"translations\": {\n            \"ar\": {\n                \"name\": \"لارافيل\",\n                \"description\": \"منشورات لارافيل\",\n                \"slug\": \"لارافيل\"\n            },\n            \"en\": {\n                \"name\": \"Laravel\",\n                \"description\": \"Laravel posts\",\n                \"slug\": \"laravel\"\n            }\n        },\n        \"count_news\": 5,\n        \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/tag/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Tag",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/tag/1",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][name]",
                                            "value": "Science",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][description]",
                                            "value": "Science tag",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][name]",
                                            "value": "علوم",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][description]",
                                            "value": "وسم العلوم",
                                            "type": "text"
                                        }
                                    ]
                                },
                                "description": "تعديل وسم.\n\n**مطلوب:** نفس حقول الترجمة.\n\n**الاستجابة:** كائن الوسم مع `translations`."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Laravel\",\n        \"language\": null,\n        \"slug\": \"laravel\",\n        \"user_created\": \"admin\",\n        \"user_id\": 1,\n        \"description\": \"Laravel posts\",\n        \"translations\": {\n            \"ar\": {\n                \"name\": \"لارافيل\",\n                \"description\": \"منشورات لارافيل\",\n                \"slug\": \"لارافيل\"\n            },\n            \"en\": {\n                \"name\": \"Laravel\",\n                \"description\": \"Laravel posts\",\n                \"slug\": \"laravel\"\n            }\n        },\n        \"count_news\": 5,\n        \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n    },\n    \"message\": \"Updated\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/tag/1",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][name]",
                                                    "value": "Science",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][description]",
                                                    "value": "Science tag",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][name]",
                                                    "value": "علوم",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][description]",
                                                    "value": "وسم العلوم",
                                                    "type": "text"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete Tag",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/tag/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/tag/1"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "📰 News",
                    "item": [
                        {
                            "name": "List News",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/news?page=1&per_page=10",
                                "description": "قائمة الأخبار (مصفّحة).\n\n**Query (فلترة):** `search`، `category_id`، `tag_ids[]`، `status`، `featured`، `per_page`.\n\n**الاستجابة:** كل عنصر فيه `translations.{ar,en}`."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"list\": [\n            {\n                \"id\": 1,\n                \"title\": \"Breaking News\",\n                \"publisher\": \"John Doe\",\n                \"is_scheduled\": false,\n                \"sub_title\": \"A short subtitle\",\n                \"slug\": \"breaking-news\",\n                \"is_featured\": 1,\n                \"image\": \"https://dev-lam.maaal.site/storage/uploads/photos/news/2026-06/main.jpg\",\n                \"image_description\": \"cover image\",\n                \"is_published\": 1,\n                \"schedule_date\": null,\n                \"schedule_time\": null,\n                \"meta_image\": \"https://dev-lam.maaal.site/storage/uploads/photos/news/2026-06/meta.jpg\",\n                \"category_id\": 2,\n                \"category\": \"Technology\",\n                \"sub_category_id\": 5,\n                \"sub_category\": \"AI\",\n                \"status\": 1,\n                \"description\": \"Full body text...\",\n                \"meta_title\": \"Breaking News\",\n                \"meta_description\": \"SEO description\",\n                \"translations\": {\n                    \"ar\": {\n                        \"title\": \"خبر عاجل\",\n                        \"sub_title\": \"عنوان فرعي\",\n                        \"meta_title\": \"خبر عاجل\",\n                        \"description\": \"النص الكامل...\",\n                        \"meta_description\": \"وصف SEO\",\n                        \"slug\": \"خبر-عاجل\"\n                    },\n                    \"en\": {\n                        \"title\": \"Breaking News\",\n                        \"sub_title\": \"A short subtitle\",\n                        \"meta_title\": \"Breaking News\",\n                        \"description\": \"Full body text...\",\n                        \"meta_description\": \"SEO description\",\n                        \"slug\": \"breaking-news\"\n                    }\n                },\n                \"tags\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Laravel\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"name\": \"AI\"\n                    }\n                ],\n                \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n            }\n        ],\n        \"paginator\": {\n            \"total_count\": 1,\n            \"total_pages\": 1,\n            \"current_page\": 1,\n            \"per_page\": 10\n        }\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/news?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create News",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/news",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][title]",
                                            "value": "News Title EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][title]",
                                            "value": "عنوان الخبر",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][description]",
                                            "value": "News description EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][description]",
                                            "value": "وصف الخبر",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][sub_title]",
                                            "value": "Subtitle EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][sub_title]",
                                            "value": "عنوان فرعي",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_title]",
                                            "value": "Meta Title",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_title]",
                                            "value": "عنوان ميتا",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_description]",
                                            "value": "Meta description",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_description]",
                                            "value": "وصف ميتا",
                                            "type": "text"
                                        },
                                        {
                                            "key": "source",
                                            "value": "",
                                            "type": "text"
                                        },
                                        {
                                            "key": "slug",
                                            "value": "",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_featured",
                                            "value": "0",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_published",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "category_id",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "sub_category_id",
                                            "value": "",
                                            "type": "text"
                                        },
                                        {
                                            "key": "tags[0]",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "main_image",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "meta_image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                },
                                "description": "إنشاء خبر — `form-data`.\n\n**مطلوب:** `main_image`، `tags[]`، `translations[en][title]`، `translations[ar][title]`، و(`is_published=1`) أو (`schudle_date`+`schudle_time`).\n**اختياري:** `category_id`، `sub_category_id` (**رقم id — مش `sub_category`**)، `meta_image`، `source`، `image_description`، و`translations[locale][sub_title|meta_title|meta_description|description]`.\n\n⚠️ الحقول متعددة اللغات تتبعت **متداخلة**: `translations[en][meta_title]` ... مش حقول مسطّحة."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Created\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/news",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][title]",
                                                    "value": "News Title EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][title]",
                                                    "value": "عنوان الخبر",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][description]",
                                                    "value": "News description EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][description]",
                                                    "value": "وصف الخبر",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][sub_title]",
                                                    "value": "Subtitle EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][sub_title]",
                                                    "value": "عنوان فرعي",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_title]",
                                                    "value": "Meta Title",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_title]",
                                                    "value": "عنوان ميتا",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_description]",
                                                    "value": "Meta description",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_description]",
                                                    "value": "وصف ميتا",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "source",
                                                    "value": "",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "slug",
                                                    "value": "",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_featured",
                                                    "value": "0",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_published",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "category_id",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "sub_category_id",
                                                    "value": "",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "tags[0]",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "main_image",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "meta_image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get News",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/news/1",
                                "description": "تفاصيل خبر.\n\n**الاستجابة:** `translations.{ar,en}` = `{title,sub_title,meta_title,description,meta_description,slug}` (اقرأ الإنجليزي من `translations.en.meta_title` ...)، `sub_category_id` (رقم)، `sub_category` (اسم — للقراءة فقط)."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"id\": 1,\n        \"title\": \"Breaking News\",\n        \"publisher\": \"John Doe\",\n        \"is_scheduled\": false,\n        \"sub_title\": \"A short subtitle\",\n        \"slug\": \"breaking-news\",\n        \"is_featured\": 1,\n        \"image\": \"https://dev-lam.maaal.site/storage/uploads/photos/news/2026-06/main.jpg\",\n        \"image_description\": \"cover image\",\n        \"is_published\": 1,\n        \"schedule_date\": null,\n        \"schedule_time\": null,\n        \"meta_image\": \"https://dev-lam.maaal.site/storage/uploads/photos/news/2026-06/meta.jpg\",\n        \"category_id\": 2,\n        \"category\": \"Technology\",\n        \"sub_category_id\": 5,\n        \"sub_category\": \"AI\",\n        \"status\": 1,\n        \"description\": \"Full body text...\",\n        \"meta_title\": \"Breaking News\",\n        \"meta_description\": \"SEO description\",\n        \"translations\": {\n            \"ar\": {\n                \"title\": \"خبر عاجل\",\n                \"sub_title\": \"عنوان فرعي\",\n                \"meta_title\": \"خبر عاجل\",\n                \"description\": \"النص الكامل...\",\n                \"meta_description\": \"وصف SEO\",\n                \"slug\": \"خبر-عاجل\"\n            },\n            \"en\": {\n                \"title\": \"Breaking News\",\n                \"sub_title\": \"A short subtitle\",\n                \"meta_title\": \"Breaking News\",\n                \"description\": \"Full body text...\",\n                \"meta_description\": \"SEO description\",\n                \"slug\": \"breaking-news\"\n            }\n        },\n        \"tags\": [\n            {\n                \"id\": 1,\n                \"name\": \"Laravel\"\n            },\n            {\n                \"id\": 2,\n                \"name\": \"AI\"\n            }\n        ],\n        \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/news/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update News",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/news/1",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][title]",
                                            "value": "News Title EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][title]",
                                            "value": "عنوان الخبر",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][description]",
                                            "value": "News description EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][description]",
                                            "value": "وصف الخبر",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][sub_title]",
                                            "value": "Subtitle EN",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][sub_title]",
                                            "value": "عنوان فرعي",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_title]",
                                            "value": "Meta Title",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_title]",
                                            "value": "عنوان ميتا",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_description]",
                                            "value": "Meta description",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_description]",
                                            "value": "وصف ميتا",
                                            "type": "text"
                                        },
                                        {
                                            "key": "source",
                                            "value": "",
                                            "type": "text"
                                        },
                                        {
                                            "key": "slug",
                                            "value": "",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_featured",
                                            "value": "0",
                                            "type": "text"
                                        },
                                        {
                                            "key": "is_published",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "category_id",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "sub_category_id",
                                            "value": "",
                                            "type": "text"
                                        },
                                        {
                                            "key": "tags[0]",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "main_image",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "meta_image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                },
                                "description": "تعديل خبر — `form-data`.\n\nنفس حقول الإنشاء. `sub_category_id` بالاسم ده بالظبط (رقم). حقول الـ meta تتبعت متداخلة `translations[en][meta_title]` / `translations[en][meta_description]`.\n\n**الاستجابة:** رسالة نجاح (استخدم Get News لقراءة الناتج)."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/news/1",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][title]",
                                                    "value": "News Title EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][title]",
                                                    "value": "عنوان الخبر",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][description]",
                                                    "value": "News description EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][description]",
                                                    "value": "وصف الخبر",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][sub_title]",
                                                    "value": "Subtitle EN",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][sub_title]",
                                                    "value": "عنوان فرعي",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_title]",
                                                    "value": "Meta Title",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_title]",
                                                    "value": "عنوان ميتا",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_description]",
                                                    "value": "Meta description",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_description]",
                                                    "value": "وصف ميتا",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "source",
                                                    "value": "",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "slug",
                                                    "value": "",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_featured",
                                                    "value": "0",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "is_published",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "category_id",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "sub_category_id",
                                                    "value": "",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "tags[0]",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "main_image",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "meta_image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete News",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/news/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/news/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Featured News",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/featured-news?page=1&per_page=10",
                                "description": "الأخبار المميّزة (مصفّحة) — كل عنصر فيه `translations.{ar,en}`."
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n    \"status\": true,\n    \"data\": {\n        \"list\": [\n            {\n                \"id\": 1,\n                \"title\": \"Breaking News\",\n                \"publisher\": \"John Doe\",\n                \"is_scheduled\": false,\n                \"sub_title\": \"A short subtitle\",\n                \"slug\": \"breaking-news\",\n                \"is_featured\": 1,\n                \"image\": \"https://dev-lam.maaal.site/storage/uploads/photos/news/2026-06/main.jpg\",\n                \"image_description\": \"cover image\",\n                \"is_published\": 1,\n                \"schedule_date\": null,\n                \"schedule_time\": null,\n                \"meta_image\": \"https://dev-lam.maaal.site/storage/uploads/photos/news/2026-06/meta.jpg\",\n                \"category_id\": 2,\n                \"category\": \"Technology\",\n                \"sub_category_id\": 5,\n                \"sub_category\": \"AI\",\n                \"status\": 1,\n                \"description\": \"Full body text...\",\n                \"meta_title\": \"Breaking News\",\n                \"meta_description\": \"SEO description\",\n                \"translations\": {\n                    \"ar\": {\n                        \"title\": \"خبر عاجل\",\n                        \"sub_title\": \"عنوان فرعي\",\n                        \"meta_title\": \"خبر عاجل\",\n                        \"description\": \"النص الكامل...\",\n                        \"meta_description\": \"وصف SEO\",\n                        \"slug\": \"خبر-عاجل\"\n                    },\n                    \"en\": {\n                        \"title\": \"Breaking News\",\n                        \"sub_title\": \"A short subtitle\",\n                        \"meta_title\": \"Breaking News\",\n                        \"description\": \"Full body text...\",\n                        \"meta_description\": \"SEO description\",\n                        \"slug\": \"breaking-news\"\n                    }\n                },\n                \"tags\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Laravel\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"name\": \"AI\"\n                    }\n                ],\n                \"created_at\": \"2026-06-04T12:00:00.000000Z\"\n            }\n        ],\n        \"paginator\": {\n            \"total_count\": 1,\n            \"total_pages\": 1,\n            \"current_page\": 1,\n            \"per_page\": 10\n        }\n    },\n    \"message\": \"\",\n    \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/featured-news?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Toggle Featured News",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/toggle-featured/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"is_featured\": true\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/toggle-featured/1"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "📄 Pages",
                    "item": [
                        {
                            "name": "List Pages",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/page?page=1&per_page=10"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"title\": \"About Us\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/page?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create Page",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/page",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][title]",
                                            "value": "About Us",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][title]",
                                            "value": "من نحن",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][content]",
                                            "value": "<p>Page content EN</p>",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][content]",
                                            "value": "<p>محتوى الصفحة</p>",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_title]",
                                            "value": "About",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_title]",
                                            "value": "من نحن",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_description]",
                                            "value": "About page",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_description]",
                                            "value": "صفحة من نحن",
                                            "type": "text"
                                        },
                                        {
                                            "key": "location",
                                            "value": "header",
                                            "type": "text"
                                        },
                                        {
                                            "key": "status",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "display_navigation_location",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "display_to_authenticated",
                                            "value": "0",
                                            "type": "text"
                                        },
                                        {
                                            "key": "display_title",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "display_in_navbar",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "meta_image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Created\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/page",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][title]",
                                                    "value": "About Us",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][title]",
                                                    "value": "من نحن",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][content]",
                                                    "value": "<p>Page content EN</p>",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][content]",
                                                    "value": "<p>محتوى الصفحة</p>",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_title]",
                                                    "value": "About",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_title]",
                                                    "value": "من نحن",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_description]",
                                                    "value": "About page",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_description]",
                                                    "value": "صفحة من نحن",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "location",
                                                    "value": "header",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "status",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "display_navigation_location",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "display_to_authenticated",
                                                    "value": "0",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "display_title",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "display_in_navbar",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "meta_image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Page",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/page/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"title\": \"About Us\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/page/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Page",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/page/1",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][title]",
                                            "value": "About Us",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][title]",
                                            "value": "من نحن",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][content]",
                                            "value": "<p>Page content EN</p>",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][content]",
                                            "value": "<p>محتوى الصفحة</p>",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_title]",
                                            "value": "About",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_title]",
                                            "value": "من نحن",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_description]",
                                            "value": "About page",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_description]",
                                            "value": "صفحة من نحن",
                                            "type": "text"
                                        },
                                        {
                                            "key": "location",
                                            "value": "header",
                                            "type": "text"
                                        },
                                        {
                                            "key": "status",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "display_navigation_location",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "display_to_authenticated",
                                            "value": "0",
                                            "type": "text"
                                        },
                                        {
                                            "key": "display_title",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "display_in_navbar",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "meta_image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/page/1",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][title]",
                                                    "value": "About Us",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][title]",
                                                    "value": "من نحن",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][content]",
                                                    "value": "<p>Page content EN</p>",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][content]",
                                                    "value": "<p>محتوى الصفحة</p>",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_title]",
                                                    "value": "About",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_title]",
                                                    "value": "من نحن",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_description]",
                                                    "value": "About page",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_description]",
                                                    "value": "صفحة من نحن",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "location",
                                                    "value": "header",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "status",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "display_navigation_location",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "display_to_authenticated",
                                                    "value": "0",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "display_title",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "display_in_navbar",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "meta_image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete Page",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/page/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/page/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Toggle Page Status",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/toggle-page-status/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"status\": 1\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/toggle-page-status/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Page Location Options",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/getpage-location"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    \"header\",\n    \"footer\"\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/getpage-location"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "🎫 Tickets",
                    "item": [
                        {
                            "name": "List Tickets",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/ticket?page=1&per_page=10"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"name\": \"Ahmed\",\n        \"email\": \"ahmed@example.com\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/ticket?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Ticket",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/ticket/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"Ahmed\",\n    \"message\": \"Hello\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/ticket/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete Ticket",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/ticket/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/ticket/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Reply to Ticket",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/message-replay/1",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"message_replay\": \"Thank you for contacting us.\",\n  \"method\": \"email\",\n  \"email\": \"ahmed@example.com\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"تم ارسال الرد بنجاح\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/message-replay/1",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"message_replay\": \"Thank you for contacting us.\",\n  \"method\": \"email\",\n  \"email\": \"ahmed@example.com\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "🎨 Appearance",
                    "item": [
                        {
                            "name": "Get Style",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-style"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"header\": \"\",\n    \"footer\": \"\",\n    \"body\": \"\",\n    \"css\": \"\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-style"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create/Update Style",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/create-style",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"css\",\n  \"css\": \"body { font-family: Arial; }\",\n  \"header\": \"\",\n  \"footer\": \"\",\n  \"body\": \"\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"type\": \"css\"\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/create-style",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"type\": \"css\",\n  \"css\": \"body { font-family: Arial; }\",\n  \"header\": \"\",\n  \"footer\": \"\",\n  \"body\": \"\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "🧩 Widgets",
                    "item": [
                        {
                            "name": "List Widgets",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/widget?page=1&per_page=10"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"title\": \"Latest News\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/widget?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create Widget",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/widget",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"translations\": {\n    \"en\": {\n      \"title\": \"Latest News\"\n    },\n    \"ar\": {\n      \"title\": \"آخر الأخبار\"\n    }\n  },\n  \"content_type\": 1,\n  \"location\": 1,\n  \"status\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Created\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/widget",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"translations\": {\n    \"en\": {\n      \"title\": \"Latest News\"\n    },\n    \"ar\": {\n      \"title\": \"آخر الأخبار\"\n    }\n  },\n  \"content_type\": 1,\n  \"location\": 1,\n  \"status\": true\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Widget",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/widget/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"title\": \"Latest News\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/widget/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Widget",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/widget/1",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"translations\": {\n    \"en\": {\n      \"title\": \"Updated Widget\"\n    },\n    \"ar\": {\n      \"title\": \"ويدجت محدث\"\n    }\n  },\n  \"content_type\": 1,\n  \"location\": 2,\n  \"status\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/widget/1",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"translations\": {\n    \"en\": {\n      \"title\": \"Updated Widget\"\n    },\n    \"ar\": {\n      \"title\": \"ويدجت محدث\"\n    }\n  },\n  \"content_type\": 1,\n  \"location\": 2,\n  \"status\": true\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete Widget",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/widget/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/widget/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Content Types",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/content-type"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"News\"\n    }\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/content-type"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Page Locations",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/page-location"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"Sidebar\"\n    }\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/page-location"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Toggle Widget Status",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/widget-update-status/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"status\": true\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/widget-update-status/1"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "🔧 Maintenance",
                    "item": [
                        {
                            "name": "List Maintenance",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/maintenance?page=1&per_page=10"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"title\": \"Maintenance\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/maintenance?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create Maintenance",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/maintenance",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][title]",
                                            "value": "Maintenance",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][title]",
                                            "value": "صيانة",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][name]",
                                            "value": "Site Maintenance",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][name]",
                                            "value": "صيانة الموقع",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][description]",
                                            "value": "We are under maintenance",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][description]",
                                            "value": "الموقع تحت الصيانة",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_description]",
                                            "value": "Maintenance mode",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_description]",
                                            "value": "وضع الصيانة",
                                            "type": "text"
                                        },
                                        {
                                            "key": "status",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Created\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/maintenance",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][title]",
                                                    "value": "Maintenance",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][title]",
                                                    "value": "صيانة",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][name]",
                                                    "value": "Site Maintenance",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][name]",
                                                    "value": "صيانة الموقع",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][description]",
                                                    "value": "We are under maintenance",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][description]",
                                                    "value": "الموقع تحت الصيانة",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_description]",
                                                    "value": "Maintenance mode",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_description]",
                                                    "value": "وضع الصيانة",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "status",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Maintenance",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/maintenance/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"title\": \"Maintenance\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/maintenance/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Maintenance",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/maintenance/1",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "translations[en][title]",
                                            "value": "Maintenance",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][title]",
                                            "value": "صيانة",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][name]",
                                            "value": "Site Maintenance",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][name]",
                                            "value": "صيانة الموقع",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][description]",
                                            "value": "We are under maintenance",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][description]",
                                            "value": "الموقع تحت الصيانة",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[en][meta_description]",
                                            "value": "Maintenance mode",
                                            "type": "text"
                                        },
                                        {
                                            "key": "translations[ar][meta_description]",
                                            "value": "وضع الصيانة",
                                            "type": "text"
                                        },
                                        {
                                            "key": "status",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/maintenance/1",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "translations[en][title]",
                                                    "value": "Maintenance",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][title]",
                                                    "value": "صيانة",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][name]",
                                                    "value": "Site Maintenance",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][name]",
                                                    "value": "صيانة الموقع",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][description]",
                                                    "value": "We are under maintenance",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][description]",
                                                    "value": "الموقع تحت الصيانة",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[en][meta_description]",
                                                    "value": "Maintenance mode",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "translations[ar][meta_description]",
                                                    "value": "وضع الصيانة",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "status",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete Maintenance",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/maintenance/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/maintenance/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Toggle Maintenance Status",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/maintenance-changeStatus/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"status\": 1\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/maintenance-changeStatus/1"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > Website Settings",
                    "item": [
                        {
                            "name": "Get Website Settings",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/website-settings"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"company_name\": \"Lam-SAR\",\n    \"company_email\": \"info@lam-sar.com\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/website-settings"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Website Settings",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/website-settings",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "company_name",
                                            "value": "Lam-SAR",
                                            "type": "text"
                                        },
                                        {
                                            "key": "license_number",
                                            "value": "12345",
                                            "type": "text"
                                        },
                                        {
                                            "key": "company_email",
                                            "value": "info@lam-sar.com",
                                            "type": "text"
                                        },
                                        {
                                            "key": "company_phone",
                                            "value": "+966501234567",
                                            "type": "text"
                                        },
                                        {
                                            "key": "timezone",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "date_format",
                                            "value": "Y-m-d",
                                            "type": "text"
                                        },
                                        {
                                            "key": "time_format",
                                            "value": "24",
                                            "type": "text"
                                        },
                                        {
                                            "key": "description",
                                            "value": "Company description",
                                            "type": "text"
                                        },
                                        {
                                            "key": "website_url",
                                            "value": "https://lam-sar.com",
                                            "type": "text"
                                        },
                                        {
                                            "key": "dark_mode",
                                            "value": "0",
                                            "type": "text"
                                        },
                                        {
                                            "key": "main_logo",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "footer_logo",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "favicon",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "default_image",
                                            "value": "",
                                            "type": "file"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"company_name\": \"Lam-SAR\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/website-settings",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "company_name",
                                                    "value": "Lam-SAR",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "license_number",
                                                    "value": "12345",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "company_email",
                                                    "value": "info@lam-sar.com",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "company_phone",
                                                    "value": "+966501234567",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "timezone",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "date_format",
                                                    "value": "Y-m-d",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "time_format",
                                                    "value": "24",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "description",
                                                    "value": "Company description",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "website_url",
                                                    "value": "https://lam-sar.com",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "dark_mode",
                                                    "value": "0",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "main_logo",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "footer_logo",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "favicon",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "default_image",
                                                    "value": "",
                                                    "type": "file"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Timezones",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-timezone"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"Asia/Riyadh\"\n    }\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-timezone"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Date Formats",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-dateformat"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    \"Y-m-d\",\n    \"d/m/Y\"\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-dateformat"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > Email Settings",
                    "item": [
                        {
                            "name": "Get Email Settings",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/email-settings"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"mail_protocol\": \"smtp\",\n    \"mail_host\": \"smtp.example.com\",\n    \"mail_port\": 587\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/email-settings"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Email Settings",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/email-settings/update",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"mail_protocol\": \"smtp\",\n  \"mail_library\": \"phpmailer\",\n  \"encryption\": \"tls\",\n  \"replay_to\": \"noreply@example.com\",\n  \"reply_to\": \"support@example.com\",\n  \"mail_host\": \"smtp.example.com\",\n  \"mail_port\": 587,\n  \"mail_username\": \"user@example.com\",\n  \"mail_password\": \"secret\",\n  \"mail_title\": \"Lam-SAR\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"mail_host\": \"smtp.example.com\"\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/email-settings/update",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"mail_protocol\": \"smtp\",\n  \"mail_library\": \"phpmailer\",\n  \"encryption\": \"tls\",\n  \"replay_to\": \"noreply@example.com\",\n  \"reply_to\": \"support@example.com\",\n  \"mail_host\": \"smtp.example.com\",\n  \"mail_port\": 587,\n  \"mail_username\": \"user@example.com\",\n  \"mail_password\": \"secret\",\n  \"mail_title\": \"Lam-SAR\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Test Email Settings",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/test-email-settings"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"test_email\": \"test@example.com\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/test-email-settings"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Test Email Settings",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/test-email-settings/update",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"test_email\": \"test@example.com\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": \"Email Sent!\",\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/test-email-settings/update",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"test_email\": \"test@example.com\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Email Protocols",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/email-settings/protocols"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    \"smtp\",\n    \"sendmail\"\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/email-settings/protocols"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Email Libraries",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/email-settings/library"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    \"phpmailer\"\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/email-settings/library"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Email Encryptions",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/email-settings/encryptions"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    \"tls\",\n    \"ssl\"\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/email-settings/encryptions"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > Media Settings",
                    "item": [
                        {
                            "name": "Get Media Settings",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-media-settings"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"max_file_size\": 10,\n    \"max_video_size\": 50,\n    \"max_image_size\": 5,\n    \"max_files_per_upload\": 5,\n    \"allowed_extensions\": [\n      \"jpg\",\n      \"png\",\n      \"pdf\"\n    ]\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-media-settings"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Media Settings",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/update-media-settings",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"max_file_size\": 10,\n  \"max_video_size\": 50,\n  \"max_image_size\": 5,\n  \"max_files_per_upload\": 5,\n  \"allowed_extensions\": [\n    \"jpg\",\n    \"png\",\n    \"pdf\",\n    \"mp4\"\n  ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Created\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/update-media-settings",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"max_file_size\": 10,\n  \"max_video_size\": 50,\n  \"max_image_size\": 5,\n  \"max_files_per_upload\": 5,\n  \"allowed_extensions\": [\n    \"jpg\",\n    \"png\",\n    \"pdf\",\n    \"mp4\"\n  ]\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Media Extensions",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/media-extensions"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    \"jpg\",\n    \"png\",\n    \"gif\",\n    \"pdf\",\n    \"mp4\"\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/media-extensions"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > Font Settings",
                    "item": [
                        {
                            "name": "List Fonts",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/font?page=1&per_page=10"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"list\": [\n      {\n        \"id\": 1,\n        \"name\": \"Roboto\"\n      }\n    ],\n    \"paginator\": {\n      \"total_count\": 1,\n      \"total_pages\": 1,\n      \"current_page\": 1,\n      \"per_page\": 10\n    }\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/font?page=1&per_page=10"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Create Font",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/font",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"name\": \"Roboto\",\n  \"font_family\": \"Roboto, sans-serif\",\n  \"url\": \"https://fonts.googleapis.com/css2?family=Roboto\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"Roboto\",\n    \"font_family\": \"Roboto, sans-serif\"\n  },\n  \"message\": \"Created\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/font",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"name\": \"Roboto\",\n  \"font_family\": \"Roboto, sans-serif\",\n  \"url\": \"https://fonts.googleapis.com/css2?family=Roboto\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Font",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/font/1"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"Roboto\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/font/1"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Font",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/font/1",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"name\": \"Roboto Updated\",\n  \"font_family\": \"Roboto, sans-serif\",\n  \"url\": \"https://fonts.googleapis.com/css2?family=Roboto\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"Roboto Updated\"\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/font/1",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"name\": \"Roboto Updated\",\n  \"font_family\": \"Roboto, sans-serif\",\n  \"url\": \"https://fonts.googleapis.com/css2?family=Roboto\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Delete Font",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/font/Roboto",
                                "description": "Route parameter is font name, not ID"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"name\": \"Roboto\"\n  },\n  \"message\": \"Deleted\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/font/Roboto"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Main Fonts",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/main-fonts"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"Roboto\"\n    }\n  ],\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/main-fonts"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Site Fonts",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/update-site-fonts",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"main_font\": 1,\n  \"sub_font\": 2,\n  \"other_font\": 3,\n  \"slider_font_size\": \"24px\",\n  \"metaSize\": \"14px\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"main_font\": 1\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/update-site-fonts",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"main_font\": 1,\n  \"sub_font\": 2,\n  \"other_font\": 3,\n  \"slider_font_size\": \"24px\",\n  \"metaSize\": \"14px\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Get Site Fonts",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-site-fonts"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"main_font\": \"Roboto\",\n    \"sub_font\": \"Open Sans\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-site-fonts"
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > SEO Settings",
                    "item": [
                        {
                            "name": "Get SEO Settings",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/seo-setting"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"site_title\": \"Lam-SAR\",\n    \"homepage_title\": \"Home\",\n    \"meta_keywords\": \"lam, sar\",\n    \"meta_description\": \"Welcome to Lam-SAR\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/seo-setting"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update SEO Settings",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/seo-setting",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"site_title\": \"Lam-SAR\",\n  \"homepage_title\": \"Home - Lam-SAR\",\n  \"meta_keywords\": \"lam, sar, research\",\n  \"meta_description\": \"Welcome to Lam-SAR website\",\n  \"google_analytics\": \"UA-XXXXXXX-X\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"site_title\": \"Lam-SAR\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/seo-setting",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"site_title\": \"Lam-SAR\",\n  \"homepage_title\": \"Home - Lam-SAR\",\n  \"meta_keywords\": \"lam, sar, research\",\n  \"meta_description\": \"Welcome to Lam-SAR website\",\n  \"google_analytics\": \"UA-XXXXXXX-X\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > Dashboard Settings",
                    "item": [
                        {
                            "name": "Get Dashboard Settings",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-dashboard-settings"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"date_format\": 1,\n    \"time_format\": 1\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-dashboard-settings"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Dashboard Settings",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/update-dashboard-settings",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "dashboard_logo",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "logo",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "date_format",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "time_format",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "timezone",
                                            "value": "1",
                                            "type": "text"
                                        },
                                        {
                                            "key": "main_font",
                                            "value": "Roboto",
                                            "type": "text"
                                        },
                                        {
                                            "key": "sub_font",
                                            "value": "Open Sans",
                                            "type": "text"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"date_format\": 1\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/update-dashboard-settings",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "dashboard_logo",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "logo",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "date_format",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "time_format",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "timezone",
                                                    "value": "1",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "main_font",
                                                    "value": "Roboto",
                                                    "type": "text"
                                                },
                                                {
                                                    "key": "sub_font",
                                                    "value": "Open Sans",
                                                    "type": "text"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > Tracking & Analytics",
                    "item": [
                        {
                            "name": "Get Tracking Data",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-tracking"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"google_tag_id\": \"G-XXXXXXXX\",\n    \"google_tag_code_head\": \"\",\n    \"google_tag_code_body\": \"\",\n    \"tracking_type\": \"id\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-tracking"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Update Tracking Data",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/update-tracking",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"tracking_type\": \"id\",\n  \"google_tag_id\": \"G-XXXXXXXX\",\n  \"google_tag_code_head\": \"\",\n  \"google_tag_code_body\": \"\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"tracking_type\": \"id\"\n  },\n  \"message\": \"Updated\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/update-tracking",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"tracking_type\": \"id\",\n  \"google_tag_id\": \"G-XXXXXXXX\",\n  \"google_tag_code_head\": \"\",\n  \"google_tag_code_body\": \"\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > Robots.txt",
                    "item": [
                        {
                            "name": "Get Robots.txt",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-robots"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"robots_text\": \"User-agent: *\\nAllow: /\"\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-robots"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Import Robots.txt",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/robots-import",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "robots_file",
                                            "value": "",
                                            "type": "file"
                                        },
                                        {
                                            "key": "robots_text",
                                            "value": "User-agent: *\nAllow: /",
                                            "type": "text"
                                        }
                                    ]
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"Robots.txt file has been imported successfully\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/robots-import",
                                        "body": {
                                            "mode": "formdata",
                                            "formdata": [
                                                {
                                                    "key": "robots_file",
                                                    "value": "",
                                                    "type": "file"
                                                },
                                                {
                                                    "key": "robots_text",
                                                    "value": "User-agent: *\nAllow: /",
                                                    "type": "text"
                                                }
                                            ]
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "⚙️ Settings > Storage & Sitemap",
                    "item": [
                        {
                            "name": "Generate Sitemap",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/generate-sitemap"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"تم تحديث خريطة الموقع بنجاح\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/generate-sitemap"
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Generate Cookies",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/generate-cookies",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"message\": \"We use cookies to improve your experience.\",\n  \"status\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"تم إضافة ملفات الارتباط بنجاح \",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/generate-cookies",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"message\": \"We use cookies to improve your experience.\",\n  \"status\": 1\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Generate Storage Config",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/generate-storage",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"driver_id\": 2,\n  \"access_key\": \"AKIAEXAMPLE\",\n  \"secret_key\": \"secret\",\n  \"bucket\": \"lam-sar-bucket\",\n  \"region\": \"us-east-1\",\n  \"status\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": null,\n  \"message\": \"تم تعديل التخزين المؤقت بنجاح\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/generate-storage",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n  \"driver_id\": 2,\n  \"access_key\": \"AKIAEXAMPLE\",\n  \"secret_key\": \"secret\",\n  \"bucket\": \"lam-sar-bucket\",\n  \"region\": \"us-east-1\",\n  \"status\": 1\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "Generate Storage Config (Local)",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/generate-storage",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"driver_id\": 1,\n  \"status\": 1\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                },
                                "description": "driver_id=1 uses local storage only"
                            }
                        },
                        {
                            "name": "Get Storage Config",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": "{{base_url}}/api/dashboard/get-storage"
                            },
                            "response": [
                                {
                                    "name": "Success",
                                    "status": "OK",
                                    "code": 200,
                                    "_postman_previewlanguage": "json",
                                    "header": [
                                        {
                                            "key": "Content-Type",
                                            "value": "application/json"
                                        }
                                    ],
                                    "body": "{\n  \"status\": true,\n  \"data\": {\n    \"driver_id\": 1,\n    \"status\": 1\n  },\n  \"message\": \"\",\n  \"code\": 200\n}",
                                    "originalRequest": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": "{{base_url}}/api/dashboard/get-storage"
                                    }
                                }
                            ]
                        }
                    ]
                }
            ]
        }
    ],
    "event": [
        {
            "listen": "prerequest",
            "script": {
                "type": "text/javascript",
                "exec": [
                    "if (!pm.collectionVariables.get('base_url')) {",
                    "    pm.collectionVariables.set('base_url', 'https://dev-lam.maaal.site');",
                    "}"
                ]
            }
        }
    ]
}
