{
	"info": {
		"_postman_id": "0f2eb607-bd34-4a7e-8b4e-0dc9de930b1f",
		"name": "CRM Exas",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "9500599"
	},
	"item": [
		{
			"name": "Client",
			"item": [
				{
					"name": "Auth",
					"item": [
						{
							"name": "Profile",
							"item": [
								{
									"name": "profile",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{apitoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}client/profile",
											"host": [
												"{{localHost}}client"
											],
											"path": [
												"profile"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "login",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"var jsonData = JSON.parse(responseBody);\r",
											"postman.setEnvironmentVariable(\"apitoken\", jsonData.data.token);"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "email",
											"value": "mohamed@client.com",
											"type": "text"
										},
										{
											"key": "password",
											"value": "12345678",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}client/auth/login",
									"host": [
										"{{localHost}}client"
									],
									"path": [
										"auth",
										"login"
									]
								}
							},
							"response": []
						},
						{
							"name": "register",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "name",
											"value": "client",
											"type": "text"
										},
										{
											"key": "phone",
											"value": "+966505505050",
											"type": "text"
										},
										{
											"key": "email",
											"value": "mohamed@client.com",
											"type": "text"
										},
										{
											"key": "password",
											"value": "12345678",
											"description": "min:6",
											"type": "text"
										},
										{
											"key": "password_confirmation",
											"value": "12345678",
											"type": "text"
										},
										{
											"key": "state_id",
											"value": "1",
											"description": "From Helpers",
											"type": "text"
										},
										{
											"key": "branch_id",
											"value": "1",
											"description": "From Helpers",
											"type": "text"
										},
										{
											"key": "address",
											"value": "15 street khaled abaza , Egybt",
											"description": "Nullable",
											"type": "text"
										},
										{
											"key": "fcm_token",
											"value": "",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}client/auth/register",
									"host": [
										"{{localHost}}client"
									],
									"path": [
										"auth",
										"register"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "request new project",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "name_ar",
									"value": "فيلا بالساحل الشمالي ",
									"description": "اسم المشروع بالعربية",
									"type": "text"
								},
								{
									"key": "name_en",
									"value": "North coast villa",
									"description": "اسم المشروع بالانجليزية",
									"type": "text"
								},
								{
									"key": "service_id",
									"value": "1",
									"description": "نوع الخدمه | From Helper services",
									"type": "text"
								},
								{
									"key": "country_id",
									"value": "1",
									"description": "From Helpers",
									"type": "text"
								},
								{
									"key": "state_id",
									"value": "1",
									"description": "From Helpers",
									"type": "text"
								},
								{
									"key": "know_us_id",
									"value": "1",
									"description": "From Helpers",
									"type": "text"
								},
								{
									"key": "type_id",
									"value": "1",
									"description": "From Helpers",
									"type": "text"
								},
								{
									"key": "area_id",
									"value": "1",
									"description": "From Helpers",
									"type": "text"
								},
								{
									"key": "duration_id",
									"value": "1",
									"description": "From Helpers",
									"type": "text"
								},
								{
									"key": "is_plan",
									"value": "1",
									"description": "0 | 1",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{localHost}}client/project/store",
							"host": [
								"{{localHost}}client"
							],
							"path": [
								"project",
								"store"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Admin",
			"item": [
				{
					"name": "Auth",
					"item": [
						{
							"name": "login",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"var jsonData = JSON.parse(responseBody);\r",
											"postman.setEnvironmentVariable(\"admintoken\", jsonData.data.token);"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "email",
											"value": "admin@admin.com",
											"type": "text"
										},
										{
											"key": "password",
											"value": "123456",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/auth/login",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"auth",
										"login"
									]
								}
							},
							"response": []
						},
						{
							"name": "logout",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"var jsonData = JSON.parse(responseBody);\r",
											"postman.setEnvironmentVariable(\"admintoken\", jsonData.data.token);"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": []
								},
								"url": {
									"raw": "{{localHost}}admin/auth/logout",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"auth",
										"logout"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Profile",
					"item": [
						{
							"name": "profile",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": []
								},
								"url": {
									"raw": "{{localHost}}admin/profile",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"profile"
									]
								}
							},
							"response": [
								{
									"name": "success",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/profile",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"profile"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Server",
											"value": "nginx/1.18.0 (Ubuntu)"
										},
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Transfer-Encoding",
											"value": "chunked"
										},
										{
											"key": "Connection",
											"value": "keep-alive"
										},
										{
											"key": "Cache-Control",
											"value": "no-cache, private"
										},
										{
											"key": "Date",
											"value": "Wed, 22 Feb 2023 13:11:19 GMT"
										},
										{
											"key": "X-RateLimit-Limit",
											"value": "60"
										},
										{
											"key": "X-RateLimit-Remaining",
											"value": "59"
										},
										{
											"key": "Access-Control-Allow-Origin",
											"value": "*"
										}
									],
									"cookie": [],
									"body": "{\n    \"message\": \"تم عرض البيانات بنجاح\",\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"admin\",\n        \"email\": \"admin@admin.com\",\n        \"phone\": \"01201636129\",\n        \"address\": \"\",\n        \"type\": \"admin\"\n    }\n}"
								}
							]
						}
					]
				},
				{
					"name": "Employees",
					"item": [
						{
							"name": "index",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": []
								},
								"url": {
									"raw": "{{localHost}}admin/employee",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"employee"
									]
								}
							},
							"response": []
						},
						{
							"name": "store",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "name",
											"value": "ayman",
											"type": "text"
										},
										{
											"key": "phone",
											"value": "01111651415",
											"type": "text"
										},
										{
											"key": "email",
											"value": "ayman@gmail.com",
											"type": "text"
										},
										{
											"key": "password",
											"value": "123456",
											"type": "text"
										},
										{
											"key": "password_confirmation",
											"value": "123456",
											"type": "text"
										},
										{
											"key": "address",
											"value": "",
											"type": "text"
										},
										{
											"key": "job_type_id",
											"value": "1",
											"type": "text"
										},
										{
											"key": "state_id",
											"value": "1",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/employee/store",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"employee",
										"store"
									]
								}
							},
							"response": []
						},
						{
							"name": "update",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "2",
											"description": "required",
											"type": "text"
										},
										{
											"key": "name",
											"value": "ayman",
											"type": "text"
										},
										{
											"key": "phone",
											"value": "01111651415",
											"type": "text"
										},
										{
											"key": "email",
											"value": "ayman@gmail.com",
											"type": "text"
										},
										{
											"key": "password",
											"value": "",
											"type": "text"
										},
										{
											"key": "password_confirmation",
											"value": "",
											"type": "text"
										},
										{
											"key": "address",
											"value": "",
											"type": "text"
										},
										{
											"key": "job_type_id",
											"value": "1",
											"type": "text"
										},
										{
											"key": "state_id",
											"value": "1",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/employee/update",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"employee",
										"update"
									]
								}
							},
							"response": []
						},
						{
							"name": "delete",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "2",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/employee/delete",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"employee",
										"delete"
									]
								}
							},
							"response": []
						},
						{
							"name": "change active",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "3",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/employee/change-active",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"employee",
										"change-active"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Companies",
					"item": [
						{
							"name": "index",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": []
								},
								"url": {
									"raw": "{{localHost}}admin/companies",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"companies"
									]
								}
							},
							"response": []
						},
						{
							"name": "store",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "name_ar",
											"value": "ايمنكو للسيراميك",
											"type": "text"
										},
										{
											"key": "name_en",
											"value": "aymanco seramec",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/companies/store",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"companies",
										"store"
									]
								}
							},
							"response": []
						},
						{
							"name": "update",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "4",
											"description": "required",
											"type": "text"
										},
										{
											"key": "name_ar",
											"value": "ايمنكو للسيراميك2",
											"type": "text"
										},
										{
											"key": "name_en",
											"value": "aymanco seramec2",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/companies/update",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"companies",
										"update"
									]
								}
							},
							"response": []
						},
						{
							"name": "delete",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "4",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/companies/delete",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"companies",
										"delete"
									]
								}
							},
							"response": []
						},
						{
							"name": "change active",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "4",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/companies/change-active",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"companies",
										"change-active"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Branches",
					"item": [
						{
							"name": "index",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": []
								},
								"url": {
									"raw": "{{localHost}}admin/branches",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"branches"
									]
								}
							},
							"response": []
						},
						{
							"name": "store",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "name_ar",
											"value": "ايمنكو للسيراميك",
											"type": "text"
										},
										{
											"key": "name_en",
											"value": "aymanco seramec",
											"type": "text"
										},
										{
											"key": "state_id",
											"value": "1",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/branches/store",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"branches",
										"store"
									]
								}
							},
							"response": []
						},
						{
							"name": "update",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "2",
											"description": "required",
											"type": "text"
										},
										{
											"key": "name_ar",
											"value": "ayman",
											"type": "text"
										},
										{
											"key": "name_en",
											"value": "ad",
											"type": "text"
										},
										{
											"key": "state_id",
											"value": "1",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/branches/update",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"branches",
										"update"
									]
								}
							},
							"response": []
						},
						{
							"name": "delete",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "4",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/branches/delete",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"branches",
										"delete"
									]
								}
							},
							"response": []
						},
						{
							"name": "change active",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "3",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/branches/change-active",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"branches",
										"change-active"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Events",
					"item": [
						{
							"name": "index",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": []
								},
								"url": {
									"raw": "{{localHost}}admin/events",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"events"
									]
								}
							},
							"response": []
						},
						{
							"name": "store",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "event_date",
											"value": "2023-02-15",
											"type": "text"
										},
										{
											"key": "name",
											"value": "name",
											"description": "required",
											"type": "text"
										},
										{
											"key": "description",
											"value": "description description description",
											"description": "nullable",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/events/store",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"events",
										"store"
									]
								}
							},
							"response": []
						},
						{
							"name": "update",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "1",
											"description": "required",
											"type": "text"
										},
										{
											"key": "event_date",
											"value": "2023-02-17",
											"type": "text"
										},
										{
											"key": "name",
											"value": "ad",
											"type": "text"
										},
										{
											"key": "description",
											"value": "sadasdsadsadsadsad",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/events/update",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"events",
										"update"
									]
								}
							},
							"response": []
						},
						{
							"name": "delete",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "1",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/events/delete",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"events",
										"delete"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Contracts",
					"item": [
						{
							"name": "Levels",
							"item": [
								{
									"name": "Levels details",
									"item": [
										{
											"name": "index",
											"protocolProfileBehavior": {
												"disableBodyPruning": true
											},
											"request": {
												"auth": {
													"type": "bearer",
													"bearer": [
														{
															"key": "token",
															"value": "{{admintoken}}",
															"type": "string"
														}
													]
												},
												"method": "GET",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": []
												},
												"url": {
													"raw": "{{localHost}}admin/level-details?level_id=1",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"level-details"
													],
													"query": [
														{
															"key": "level_id",
															"value": "1"
														}
													]
												}
											},
											"response": []
										},
										{
											"name": "store",
											"request": {
												"auth": {
													"type": "bearer",
													"bearer": [
														{
															"key": "token",
															"value": "{{admintoken}}",
															"type": "string"
														}
													]
												},
												"method": "POST",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													},
													{
														"key": "Accept",
														"value": "application/json",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": [
														{
															"key": "level_id",
															"value": "1",
															"description": "required | exists in levels table",
															"type": "text"
														},
														{
															"key": "question_type_id",
															"value": "1",
															"description": "required  | from helpers qurstion types",
															"type": "text"
														},
														{
															"key": "name_ar",
															"value": "الدور الاول",
															"description": "required",
															"type": "text"
														},
														{
															"key": "name_en",
															"value": "first floor",
															"description": "required",
															"type": "text"
														},
														{
															"key": "percent",
															"value": "25",
															"description": "required | double max 100 ",
															"type": "text"
														},
														{
															"key": "is_file",
															"value": "1",
															"description": "required | 1,0",
															"type": "text"
														}
													]
												},
												"url": {
													"raw": "{{localHost}}admin/level-details/store",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"level-details",
														"store"
													]
												}
											},
											"response": []
										},
										{
											"name": "update",
											"request": {
												"auth": {
													"type": "bearer",
													"bearer": [
														{
															"key": "token",
															"value": "{{admintoken}}",
															"type": "string"
														}
													]
												},
												"method": "POST",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													},
													{
														"key": "Accept",
														"value": "application/json",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": [
														{
															"key": "id",
															"value": "1",
															"type": "text"
														},
														{
															"key": "contract_id",
															"value": "1",
															"description": "required | exists in contracts table",
															"type": "text"
														},
														{
															"key": "name_ar",
															"value": "عقد مميز",
															"description": "required",
															"type": "text"
														},
														{
															"key": "name_en",
															"value": "spichal contract",
															"description": "required",
															"type": "text"
														},
														{
															"key": "expected_days",
															"value": "15",
															"description": "required | integer only",
															"type": "text"
														},
														{
															"key": "percent",
															"value": "25",
															"description": "required | double max 100 ",
															"type": "text"
														},
														{
															"key": "type_id",
															"value": "1",
															"description": "from helpers level types",
															"type": "text"
														}
													]
												},
												"url": {
													"raw": "{{localHost}}admin/level-details/update",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"level-details",
														"update"
													]
												}
											},
											"response": []
										},
										{
											"name": "delete",
											"request": {
												"auth": {
													"type": "bearer",
													"bearer": [
														{
															"key": "token",
															"value": "{{admintoken}}",
															"type": "string"
														}
													]
												},
												"method": "POST",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													},
													{
														"key": "Accept",
														"value": "application/json",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": [
														{
															"key": "id",
															"value": "1",
															"description": "required",
															"type": "text"
														}
													]
												},
												"url": {
													"raw": "{{localHost}}admin/level-details/delete",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"level-details",
														"delete"
													]
												}
											},
											"response": []
										},
										{
											"name": "change active",
											"request": {
												"auth": {
													"type": "bearer",
													"bearer": [
														{
															"key": "token",
															"value": "{{admintoken}}",
															"type": "string"
														}
													]
												},
												"method": "POST",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													},
													{
														"key": "Accept",
														"value": "application/json",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": [
														{
															"key": "id",
															"value": "1",
															"description": "required",
															"type": "text"
														}
													]
												},
												"url": {
													"raw": "{{localHost}}admin/level-details/change-active",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"level-details",
														"change-active"
													]
												}
											},
											"response": []
										},
										{
											"name": "sort",
											"request": {
												"auth": {
													"type": "bearer",
													"bearer": [
														{
															"key": "token",
															"value": "{{admintoken}}",
															"type": "string"
														}
													]
												},
												"method": "POST",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													},
													{
														"key": "Accept",
														"value": "application/json",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": [
														{
															"key": "rows[0][id]",
															"value": "2",
															"type": "text"
														},
														{
															"key": "rows[0][sort]",
															"value": "1",
															"description": "required",
															"type": "text"
														},
														{
															"key": "rows[1][id]",
															"value": "1",
															"type": "text"
														},
														{
															"key": "rows[1][sort]",
															"value": "2",
															"type": "text"
														}
													]
												},
												"url": {
													"raw": "{{localHost}}admin/level-details/sort",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"level-details",
														"sort"
													]
												}
											},
											"response": []
										}
									]
								},
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/levels?contract_id=1",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"levels"
											],
											"query": [
												{
													"key": "contract_id",
													"value": "1"
												}
											]
										}
									},
									"response": [
										{
											"name": "success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": []
												},
												"url": {
													"raw": "{{localHost}}admin/levels?contract_id=1",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"levels"
													],
													"query": [
														{
															"key": "contract_id",
															"value": "1"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Server",
													"value": "nginx/1.18.0 (Ubuntu)"
												},
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Transfer-Encoding",
													"value": "chunked"
												},
												{
													"key": "Connection",
													"value": "keep-alive"
												},
												{
													"key": "Cache-Control",
													"value": "no-cache, private"
												},
												{
													"key": "Date",
													"value": "Wed, 22 Feb 2023 13:05:18 GMT"
												},
												{
													"key": "X-RateLimit-Limit",
													"value": "60"
												},
												{
													"key": "X-RateLimit-Remaining",
													"value": "57"
												},
												{
													"key": "Access-Control-Allow-Origin",
													"value": "*"
												}
											],
											"cookie": [],
											"body": "{\n    \"message\": \"تم عرض البيانات بنجاح\",\n    \"data\": {\n        \"levels\": {\n            \"data\": [\n                {\n                    \"id\": 6,\n                    \"name\": \"عقد مميز 2222\",\n                    \"name_ar\": \"عقد مميز 2222\",\n                    \"name_en\": \"spichal contract 22222\",\n                    \"percent\": 10,\n                    \"expected_days\": 15,\n                    \"type_id\": 1,\n                    \"type\": \"مرحلة تفاصيل داخلية\",\n                    \"active\": 1\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"عقد مميز 2222\",\n                    \"name_ar\": \"عقد مميز 2222\",\n                    \"name_en\": \"spichal contract 22222\",\n                    \"percent\": 20,\n                    \"expected_days\": 15,\n                    \"type_id\": 1,\n                    \"type\": \"مرحلة تفاصيل داخلية\",\n                    \"active\": 1\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"عقد مميز 2222\",\n                    \"name_ar\": \"عقد مميز 2222\",\n                    \"name_en\": \"spichal contract 22222\",\n                    \"percent\": 20,\n                    \"expected_days\": 15,\n                    \"type_id\": 1,\n                    \"type\": \"مرحلة تفاصيل داخلية\",\n                    \"active\": 1\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"عقد مميز 2222\",\n                    \"name_ar\": \"عقد مميز 2222\",\n                    \"name_en\": \"spichal contract 22222\",\n                    \"percent\": 5,\n                    \"expected_days\": 15,\n                    \"type_id\": 1,\n                    \"type\": \"مرحلة تفاصيل داخلية\",\n                    \"active\": 1\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"عقد مميز 2222\",\n                    \"name_ar\": \"عقد مميز 2222\",\n                    \"name_en\": \"spichal contract 22222\",\n                    \"percent\": 20,\n                    \"expected_days\": 15,\n                    \"type_id\": 1,\n                    \"type\": \"مرحلة تفاصيل داخلية\",\n                    \"active\": 1\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"عقد مميز 2222\",\n                    \"name_ar\": \"عقد مميز 2222\",\n                    \"name_en\": \"spichal contract 22222\",\n                    \"percent\": 0,\n                    \"expected_days\": 15,\n                    \"type_id\": 1,\n                    \"type\": \"مرحلة تفاصيل داخلية\",\n                    \"active\": 1\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"عقد مميز 2\",\n                    \"name_ar\": \"عقد مميز 2\",\n                    \"name_en\": \"spichal contract 2\",\n                    \"percent\": 25,\n                    \"expected_days\": 15,\n                    \"type_id\": 1,\n                    \"type\": \"مرحلة تفاصيل داخلية\",\n                    \"active\": 1\n                }\n            ],\n            \"links\": {\n                \"first\": \"http://exas_crm.test/api/admin/levels?page=1\",\n                \"last\": \"http://exas_crm.test/api/admin/levels?page=1\",\n                \"prev\": null,\n                \"next\": null\n            },\n            \"meta\": {\n                \"current_page\": 1,\n                \"from\": 1,\n                \"last_page\": 1,\n                \"links\": [\n                    {\n                        \"url\": null,\n                        \"label\": \"&laquo; Previous\",\n                        \"active\": false\n                    },\n                    {\n                        \"url\": \"http://exas_crm.test/api/admin/levels?page=1\",\n                        \"label\": \"1\",\n                        \"active\": true\n                    },\n                    {\n                        \"url\": null,\n                        \"label\": \"Next &raquo;\",\n                        \"active\": false\n                    }\n                ],\n                \"path\": \"http://exas_crm.test/api/admin/levels\",\n                \"per_page\": 30,\n                \"to\": 7,\n                \"total\": 7\n            }\n        },\n        \"total_percent\": 100\n    }\n}"
										},
										{
											"name": "error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": []
												},
												"url": {
													"raw": "{{localHost}}admin/levels?contract_id2=1",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"levels"
													],
													"query": [
														{
															"key": "contract_id2",
															"value": "1"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Server",
													"value": "nginx/1.18.0 (Ubuntu)"
												},
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Transfer-Encoding",
													"value": "chunked"
												},
												{
													"key": "Connection",
													"value": "keep-alive"
												},
												{
													"key": "Cache-Control",
													"value": "no-cache, private"
												},
												{
													"key": "Date",
													"value": "Wed, 22 Feb 2023 13:06:58 GMT"
												},
												{
													"key": "X-RateLimit-Limit",
													"value": "60"
												},
												{
													"key": "X-RateLimit-Remaining",
													"value": "59"
												},
												{
													"key": "Access-Control-Allow-Origin",
													"value": "*"
												}
											],
											"cookie": [],
											"body": "{\n    \"message\": \"نوع التعاقد مطلوب.\"\n}"
										}
									]
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "contract_id",
													"value": "1",
													"description": "required | exists in contracts table",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "عقد مميز 2222",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "spichal contract 22222",
													"description": "required",
													"type": "text"
												},
												{
													"key": "expected_days",
													"value": "15",
													"description": "required | integer only",
													"type": "text"
												},
												{
													"key": "percent",
													"value": "0",
													"description": "required | double max 100 ",
													"type": "text"
												},
												{
													"key": "type_id",
													"value": "1",
													"description": "required  | from helpers level types",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/levels/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"levels",
												"store"
											]
										}
									},
									"response": [
										{
											"name": "not acceptable if percentage more than 100",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "lang",
														"value": "ar",
														"type": "text"
													},
													{
														"key": "Accept",
														"value": "application/json",
														"type": "text"
													}
												],
												"body": {
													"mode": "formdata",
													"formdata": [
														{
															"key": "contract_id",
															"value": "1",
															"description": "required | exists in contracts table",
															"type": "text"
														},
														{
															"key": "name_ar",
															"value": "عقد مميز 2222",
															"description": "required",
															"type": "text"
														},
														{
															"key": "name_en",
															"value": "spichal contract 22222",
															"description": "required",
															"type": "text"
														},
														{
															"key": "expected_days",
															"value": "15",
															"description": "required | integer only",
															"type": "text"
														},
														{
															"key": "percent",
															"value": "2",
															"description": "required | double max 100 ",
															"type": "text"
														},
														{
															"key": "type_id",
															"value": "1",
															"description": "required  | from helpers level types",
															"type": "text"
														}
													]
												},
												"url": {
													"raw": "{{localHost}}admin/levels/store",
													"host": [
														"{{localHost}}admin"
													],
													"path": [
														"levels",
														"store"
													]
												}
											},
											"status": "Not Acceptable",
											"code": 406,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Server",
													"value": "nginx/1.18.0 (Ubuntu)"
												},
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Transfer-Encoding",
													"value": "chunked"
												},
												{
													"key": "Connection",
													"value": "keep-alive"
												},
												{
													"key": "Cache-Control",
													"value": "no-cache, private"
												},
												{
													"key": "Date",
													"value": "Wed, 22 Feb 2023 13:05:35 GMT"
												},
												{
													"key": "X-RateLimit-Limit",
													"value": "60"
												},
												{
													"key": "X-RateLimit-Remaining",
													"value": "58"
												},
												{
													"key": "Access-Control-Allow-Origin",
													"value": "*"
												}
											],
											"cookie": [],
											"body": "{\n    \"message\": \"لا يمكن اضافة المرحلة لان النسبة المتبقيه للتعاقد لا تكفي\"\n}"
										}
									]
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "4",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "عقد مميز",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "spichal contract",
													"description": "required",
													"type": "text"
												},
												{
													"key": "expected_days",
													"value": "15",
													"description": "required | integer only",
													"type": "text"
												},
												{
													"key": "percent",
													"value": "25",
													"description": "required | double max 100 ",
													"type": "text"
												},
												{
													"key": "type_id",
													"value": "1",
													"description": "from helpers level types",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/levels/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"levels",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "1",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/levels/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"levels",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "1",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/levels/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"levels",
												"change-active"
											]
										}
									},
									"response": []
								},
								{
									"name": "sort",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "rows[0][id]",
													"value": "2",
													"type": "text"
												},
												{
													"key": "rows[0][sort]",
													"value": "1",
													"description": "required",
													"type": "text"
												},
												{
													"key": "rows[1][id]",
													"value": "1",
													"type": "text"
												},
												{
													"key": "rows[1][sort]",
													"value": "2",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/levels/sort",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"levels",
												"sort"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "index",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": []
								},
								"url": {
									"raw": "{{localHost}}admin/contracts",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"contracts"
									]
								}
							},
							"response": []
						},
						{
							"name": "store",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "name_ar",
											"value": "عقد مميز 2",
											"description": "required",
											"type": "text"
										},
										{
											"key": "name_en",
											"value": "spichal contract 2",
											"description": "required",
											"type": "text"
										},
										{
											"key": "price_template",
											"value": "description description description 1",
											"description": "required",
											"type": "text"
										},
										{
											"key": "contract_template",
											"value": "description description description 2",
											"description": "required",
											"type": "text"
										},
										{
											"key": "color",
											"value": "#000001",
											"description": "required | color picker",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/contracts/store",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"contracts",
										"store"
									]
								}
							},
							"response": []
						},
						{
							"name": "update",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "1",
											"description": "required",
											"type": "text"
										},
										{
											"key": "event_date",
											"value": "2023-02-17",
											"type": "text"
										},
										{
											"key": "name",
											"value": "ad",
											"type": "text"
										},
										{
											"key": "description",
											"value": "sadasdsadsadsadsad",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/contracts/update",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"contracts",
										"update"
									]
								}
							},
							"response": []
						},
						{
							"name": "delete",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "1",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/contracts/delete",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"contracts",
										"delete"
									]
								}
							},
							"response": []
						},
						{
							"name": "change active",
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "{{admintoken}}",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": [
										{
											"key": "id",
											"value": "1",
											"description": "required",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{localHost}}admin/contracts/change-active",
									"host": [
										"{{localHost}}admin"
									],
									"path": [
										"contracts",
										"change-active"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "_Master Data",
					"item": [
						{
							"name": "Level types",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/level-types",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"level-types"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/level-types/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"level-types",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/level-types/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"level-types",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/level-types/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"level-types",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/level-types/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"level-types",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Job types",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/job-types",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"job-types"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/job-types/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"job-types",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ايمن",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/job-types/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"job-types",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/job-types/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"job-types",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/job-types/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"job-types",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Categories",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/categories",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"categories"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/categories/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"categories",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ايمن",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/categories/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"categories",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/categories/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"categories",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/categories/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"categories",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Countries",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/countries",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"countries"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/countries/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"countries",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/countries/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"countries",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/countries/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"countries",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/countries/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"countries",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "States",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/states",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"states"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												},
												{
													"key": "country_id",
													"value": "1",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/states/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"states",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ad",
													"type": "text"
												},
												{
													"key": "country_id",
													"value": "1",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/states/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"states",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "4",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/states/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"states",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/states/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"states",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Services",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/services",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"services"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/services/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"services",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/services/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"services",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/services/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"services",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/services/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"services",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Project areas",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/project-areas",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-areas"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-areas/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-areas",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-areas/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-areas",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-areas/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-areas",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-areas/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-areas",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Project ages",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/project-ages",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-ages"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-ages/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-ages",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-ages/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-ages",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-ages/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-ages",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-ages/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-ages",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Project statuses",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/project-statuses",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-statuses"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-statuses/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-statuses",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-statuses/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-statuses",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-statuses/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-statuses",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-statuses/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-statuses",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Project durations",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/project-durations",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-durations"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-durations/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-durations",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-durations/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-durations",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-durations/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-durations",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-durations/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-durations",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Project know us",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/project-know-us",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-know-us"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-know-us/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-know-us",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-know-us/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-know-us",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-know-us/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-know-us",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-know-us/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-know-us",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Project types",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/project-types",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-types"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-types/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-types",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-types/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-types",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-types/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-types",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/project-types/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"project-types",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Question-types",
							"item": [
								{
									"name": "index",
									"protocolProfileBehavior": {
										"disableBodyPruning": true
									},
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": []
										},
										"url": {
											"raw": "{{localHost}}admin/question-types",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"question-types"
											]
										}
									},
									"response": []
								},
								{
									"name": "store",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "name_ar",
													"value": "ايمنكو للسيراميك",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "aymanco seramec",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/question-types/store",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"question-types",
												"store"
											]
										}
									},
									"response": []
								},
								{
									"name": "update",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												},
												{
													"key": "name_ar",
													"value": "ayman",
													"type": "text"
												},
												{
													"key": "name_en",
													"value": "ayman",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/question-types/update",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"question-types",
												"update"
											]
										}
									},
									"response": []
								},
								{
									"name": "delete",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "2",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/question-types/delete",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"question-types",
												"delete"
											]
										}
									},
									"response": []
								},
								{
									"name": "change active",
									"request": {
										"auth": {
											"type": "bearer",
											"bearer": [
												{
													"key": "token",
													"value": "{{admintoken}}",
													"type": "string"
												}
											]
										},
										"method": "POST",
										"header": [
											{
												"key": "lang",
												"value": "ar",
												"type": "text"
											},
											{
												"key": "Accept",
												"value": "application/json",
												"type": "text"
											}
										],
										"body": {
											"mode": "formdata",
											"formdata": [
												{
													"key": "id",
													"value": "3",
													"description": "required",
													"type": "text"
												}
											]
										},
										"url": {
											"raw": "{{localHost}}admin/question-types/change-active",
											"host": [
												"{{localHost}}admin"
											],
											"path": [
												"question-types",
												"change-active"
											]
										}
									},
									"response": []
								}
							]
						}
					]
				}
			]
		},
		{
			"name": "Helper",
			"item": [
				{
					"name": "job types",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/job-types",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"job-types"
							]
						}
					},
					"response": [
						{
							"name": "uccess",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/job-types",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"job-types"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:45:24 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "57"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"مشروع محدد\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"فرع محدد\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"كل الفروع\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "countries",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/countries",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"countries"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/countries",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"countries"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:45:34 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "56"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"داخل المملكة العربية السعودية\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"خارج المملكة العربية السعودية\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "states",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/states?country_id=1",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"states"
							],
							"query": [
								{
									"key": "country_id",
									"value": "1",
									"description": "required"
								}
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/states?country_id=1",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"states"
									],
									"query": [
										{
											"key": "country_id",
											"value": "1",
											"description": "required"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:54:09 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "59"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"منطقة الرياض\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"منطقة القصيم\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"منطقة مكة المكرمة\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "branches",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/branches?state_id=1",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"branches"
							],
							"query": [
								{
									"key": "state_id",
									"value": "1"
								}
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/branches?state_id=1",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"branches"
									],
									"query": [
										{
											"key": "state_id",
											"value": "1"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:55:52 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "58"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"الفرع الاول\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"الفرع الثاني\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"الفرع الثالث\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "categories",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/categories",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"categories"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/categories",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"categories"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:56:07 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "57"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"شركات السيراميك\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"شركات الكهرباء\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"شركات النجارة\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "level types",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/level-types",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"level-types"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/level-types",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"level-types"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:56:18 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "59"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"مرحلة تفاصيل داخلية\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"مرحلة استبيان\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"مرحلة مرفقات المشروع\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "question types",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/question-types",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"question-types"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/question-types",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"question-types"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:56:34 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "58"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"كتابة نص\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"اختياري\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"اختياري متعدد\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"صورة\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"اختياري نص\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "services",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/services",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"services"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/services",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"services"
									]
								}
							},
							"_postman_previewlanguage": null,
							"header": null,
							"cookie": [],
							"body": null
						}
					]
				},
				{
					"name": "project know us",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/project-know-us",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"project-know-us"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/project-know-us",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"project-know-us"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:56:51 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "57"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"الانستجرام\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"تويتر\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"سناب شات\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"صديق\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"اخرى\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "project types",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/project-types",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"project-types"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/project-types",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"project-types"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:57:02 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "56"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"فيلا سكنية\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"شالية\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"عمارة سكنية\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "project areas",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/project-areas",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"project-areas"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/project-areas",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"project-areas"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:57:11 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "55"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"اكبر من 250 م\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"اكبر من 500 م\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"اكبر من 1000 م\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "project durations",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/project-durations",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"project-durations"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/project-durations",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"project-durations"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:57:20 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "59"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"من شهر إلى شهرين\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"من 3 أشهر إلى 6 أشهر\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "project ages",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/project-ages",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"project-ages"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/project-ages",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"project-ages"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:57:28 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "58"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"بين 20 و 30 سنة\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"بين 30 و 40 سنة\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"بين 40 و 50 سنة\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"فوق 50 سنة\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "project statuses",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/project-statuses",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"project-statuses"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/project-statuses",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"project-statuses"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:44:37 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "59"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"في الانتظار\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"مؤكد\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"مقبول\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"سلم\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"انتهى\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "payment types",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "lang",
								"value": "ar",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{localHost}}helpers/payment-types",
							"host": [
								"{{localHost}}helpers"
							],
							"path": [
								"payment-types"
							]
						}
					},
					"response": [
						{
							"name": "success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "lang",
										"value": "ar",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{localHost}}helpers/payment-types",
									"host": [
										"{{localHost}}helpers"
									],
									"path": [
										"payment-types"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx/1.18.0 (Ubuntu)"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Cache-Control",
									"value": "no-cache, private"
								},
								{
									"key": "Date",
									"value": "Thu, 02 Feb 2023 13:44:59 GMT"
								},
								{
									"key": "X-RateLimit-Limit",
									"value": "60"
								},
								{
									"key": "X-RateLimit-Remaining",
									"value": "58"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								}
							],
							"cookie": [],
							"body": "{\n    \"status\": true,\n    \"msg\": \"تم عرض البيانات بنجاح\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"نقدي\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"تحويل بنكي\"\n        }\n    ]\n}"
						}
					]
				}
			]
		}
	],
	"auth": {
		"type": "bearer",
		"bearer": [
			{
				"key": "token",
				"value": "{{apitoken}}",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	]
}