-- phpMyAdmin SQL Dump
-- version 5.2.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Sep 17, 2026 at 09:05 AM
-- Server version: 9.6.0
-- PHP Version: 8.3.32

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `hosp`
--

-- --------------------------------------------------------

--
-- Table structure for table `activity_log`
--

CREATE TABLE `activity_log` (
  `id` bigint UNSIGNED NOT NULL,
  `log_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `subject_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject_id` bigint UNSIGNED DEFAULT NULL,
  `causer_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `causer_id` bigint UNSIGNED DEFAULT NULL,
  `properties` json DEFAULT NULL,
  `batch_uuid` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `appointments`
--

CREATE TABLE `appointments` (
  `id` bigint UNSIGNED NOT NULL,
  `tracking_code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `patient_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `preferred_language` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `doctor_id` bigint UNSIGNED DEFAULT NULL,
  `department_id` bigint UNSIGNED DEFAULT NULL,
  `preferred_date` date DEFAULT NULL,
  `preferred_time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_ci,
  `attachment_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new',
  `internal_notes` text COLLATE utf8mb4_unicode_ci,
  `assigned_to` bigint UNSIGNED DEFAULT NULL,
  `consent` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `articles`
--

CREATE TABLE `articles` (
  `id` bigint UNSIGNED NOT NULL,
  `article_category_id` bigint UNSIGNED DEFAULT NULL,
  `author_id` bigint UNSIGNED DEFAULT NULL,
  `title` json NOT NULL,
  `slug` json NOT NULL,
  `excerpt` json DEFAULT NULL,
  `content` json DEFAULT NULL,
  `featured_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gallery` json DEFAULT NULL,
  `reading_time` int DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'draft',
  `published_at` timestamp NULL DEFAULT NULL,
  `view_count` int UNSIGNED NOT NULL DEFAULT '0',
  `seo_title` json DEFAULT NULL,
  `seo_description` json DEFAULT NULL,
  `seo_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `articles`
--

INSERT INTO `articles` (`id`, `article_category_id`, `author_id`, `title`, `slug`, `excerpt`, `content`, `featured_image`, `gallery`, `reading_time`, `is_featured`, `status`, `published_at`, `view_count`, `seo_title`, `seo_description`, `seo_image`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '{\"en\": \"Ummat Hospital Expands Cardiology Services\"}', '{\"en\": \"aria-expands-cardiology-services\"}', '{\"en\": \"New diagnostic capacity and outpatient clinics strengthen heart care for Kabul patients.\"}', '{\"en\": \"<p>New diagnostic capacity and outpatient clinics strengthen heart care for Kabul patients.</p><p>Ummat Hospital remains committed to accessible, high-quality care for every patient we serve.</p>\"}', 'https://picsum.photos/seed/aria-news1/1200/700', NULL, 3, 1, 'published', '2026-09-17 04:30:58', 50, NULL, NULL, NULL, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 1, 1, '{\"en\": \"Community Health Check-up Campaign\"}', '{\"en\": \"community-health-checkup-campaign\"}', '{\"en\": \"Free screening packages help families detect hypertension and diabetes early.\"}', '{\"en\": \"<p>Free screening packages help families detect hypertension and diabetes early.</p><p>Ummat Hospital remains committed to accessible, high-quality care for every patient we serve.</p>\"}', 'https://picsum.photos/seed/aria-news2/1200/700', NULL, 3, 0, 'published', '2026-09-14 04:30:58', 40, NULL, NULL, NULL, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 1, 1, '{\"en\": \"International Patient Desk Now Open\"}', '{\"en\": \"international-patient-desk-open\"}', '{\"en\": \"Visa support, translators, and care coordination for patients traveling to Ummat Hospital.\"}', '{\"en\": \"<p>Visa support, translators, and care coordination for patients traveling to Ummat Hospital.</p><p>Ummat Hospital remains committed to accessible, high-quality care for every patient we serve.</p>\"}', 'https://picsum.photos/seed/aria-news3/1200/700', NULL, 3, 0, 'published', '2026-09-11 04:30:58', 30, NULL, NULL, NULL, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `article_categories`
--

CREATE TABLE `article_categories` (
  `id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `slug` json NOT NULL,
  `description` json DEFAULT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'news',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `article_categories`
--

INSERT INTO `article_categories` (`id`, `name`, `slug`, `description`, `type`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Hospital News\"}', '{\"en\": \"hospital-news\"}', '{\"en\": \"Updates and announcements from Ummat Hospital.\"}', 'news', 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `article_tag`
--

CREATE TABLE `article_tag` (
  `id` bigint UNSIGNED NOT NULL,
  `article_id` bigint UNSIGNED NOT NULL,
  `tag_id` bigint UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `cache`
--

CREATE TABLE `cache` (
  `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` bigint NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cache`
--

INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES
('ummat-hospital-cache-menus.appointment.en', 'O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:4:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:40;s:8:\"location\";s:11:\"appointment\";s:9:\"parent_id\";N;s:5:\"title\";s:28:\"{\"en\": \"Online Appointment\"}\";s:3:\"url\";s:13:\"/appointments\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:40;s:8:\"location\";s:11:\"appointment\";s:9:\"parent_id\";N;s:5:\"title\";s:28:\"{\"en\": \"Online Appointment\"}\";s:3:\"url\";s:13:\"/appointments\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:41;s:8:\"location\";s:11:\"appointment\";s:9:\"parent_id\";N;s:5:\"title\";s:23:\"{\"en\": \"Find a Doctor\"}\";s:3:\"url\";s:8:\"/doctors\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:41;s:8:\"location\";s:11:\"appointment\";s:9:\"parent_id\";N;s:5:\"title\";s:23:\"{\"en\": \"Find a Doctor\"}\";s:3:\"url\";s:8:\"/doctors\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:42;s:8:\"location\";s:11:\"appointment\";s:9:\"parent_id\";N;s:5:\"title\";s:27:\"{\"en\": \"Emergency Contact\"}\";s:3:\"url\";s:8:\"/contact\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:42;s:8:\"location\";s:11:\"appointment\";s:9:\"parent_id\";N;s:5:\"title\";s:27:\"{\"en\": \"Emergency Contact\"}\";s:3:\"url\";s:8:\"/contact\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:43;s:8:\"location\";s:11:\"appointment\";s:9:\"parent_id\";N;s:5:\"title\";s:28:\"{\"en\": \"International Desk\"}\";s:3:\"url\";s:14:\"/international\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:43;s:8:\"location\";s:11:\"appointment\";s:9:\"parent_id\";N;s:5:\"title\";s:28:\"{\"en\": \"International Desk\"}\";s:3:\"url\";s:14:\"/international\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}', 1789639515),
('ummat-hospital-cache-menus.footer_patient_guide.en', 'O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:6:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:34;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:29:\"{\"en\": \"Book an Appointment\"}\";s:3:\"url\";s:13:\"/appointments\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:34;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:29:\"{\"en\": \"Book an Appointment\"}\";s:3:\"url\";s:13:\"/appointments\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:35;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:24:\"{\"en\": \"Visiting Hours\"}\";s:3:\"url\";s:29:\"/patient-guide/visiting-hours\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:35;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:24:\"{\"en\": \"Visiting Hours\"}\";s:3:\"url\";s:29:\"/patient-guide/visiting-hours\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:36;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:27:\"{\"en\": \"Admission Process\"}\";s:3:\"url\";s:24:\"/patient-guide/admission\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:36;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:27:\"{\"en\": \"Admission Process\"}\";s:3:\"url\";s:24:\"/patient-guide/admission\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:37;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:25:\"{\"en\": \"Discharge Guide\"}\";s:3:\"url\";s:24:\"/patient-guide/discharge\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:37;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:25:\"{\"en\": \"Discharge Guide\"}\";s:3:\"url\";s:24:\"/patient-guide/discharge\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:38;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:24:\"{\"en\": \"Patient Rights\"}\";s:3:\"url\";s:21:\"/patient-guide/rights\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:5;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:38;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:24:\"{\"en\": \"Patient Rights\"}\";s:3:\"url\";s:21:\"/patient-guide/rights\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:5;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:39;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:31:\"{\"en\": \"Complaints & Feedback\"}\";s:3:\"url\";s:11:\"/complaints\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:6;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:39;s:8:\"location\";s:20:\"footer_patient_guide\";s:9:\"parent_id\";N;s:5:\"title\";s:31:\"{\"en\": \"Complaints & Feedback\"}\";s:3:\"url\";s:11:\"/complaints\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:6;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}', 1789639515),
('ummat-hospital-cache-menus.footer.en', 'O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:8:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:26;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:22:\"{\"en\": \"Useful Links\"}\";s:3:\"url\";s:6:\"/about\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:26;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:22:\"{\"en\": \"Useful Links\"}\";s:3:\"url\";s:6:\"/about\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:27;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:21:\"{\"en\": \"Departments\"}\";s:3:\"url\";s:12:\"/departments\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:27;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:21:\"{\"en\": \"Departments\"}\";s:3:\"url\";s:12:\"/departments\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:28;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:21:\"{\"en\": \"Our Doctors\"}\";s:3:\"url\";s:8:\"/doctors\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:28;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:21:\"{\"en\": \"Our Doctors\"}\";s:3:\"url\";s:8:\"/doctors\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:29;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:17:\"{\"en\": \"Careers\"}\";s:3:\"url\";s:8:\"/careers\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:29;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:17:\"{\"en\": \"Careers\"}\";s:3:\"url\";s:8:\"/careers\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:30;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:14:\"{\"en\": \"News\"}\";s:3:\"url\";s:5:\"/news\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:5;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:30;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:14:\"{\"en\": \"News\"}\";s:3:\"url\";s:5:\"/news\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:5;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:31;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:14:\"{\"en\": \"FAQs\"}\";s:3:\"url\";s:5:\"/faqs\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:6;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:31;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:14:\"{\"en\": \"FAQs\"}\";s:3:\"url\";s:5:\"/faqs\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:6;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:6;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:32;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:28:\"{\"en\": \"Insurance Partners\"}\";s:3:\"url\";s:10:\"/insurance\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:7;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:32;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:28:\"{\"en\": \"Insurance Partners\"}\";s:3:\"url\";s:10:\"/insurance\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:7;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:7;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:33;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:20:\"{\"en\": \"Contact Us\"}\";s:3:\"url\";s:8:\"/contact\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:8;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:33;s:8:\"location\";s:6:\"footer\";s:9:\"parent_id\";N;s:5:\"title\";s:20:\"{\"en\": \"Contact Us\"}\";s:3:\"url\";s:8:\"/contact\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:8;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}', 1789639515);
INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES
('ummat-hospital-cache-menus.header.en', 'O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:9:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:1;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:14:\"{\"en\": \"Home\"}\";s:3:\"url\";s:1:\"/\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:1;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:14:\"{\"en\": \"Home\"}\";s:3:\"url\";s:1:\"/\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:2;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:18:\"{\"en\": \"About Us\"}\";s:3:\"url\";s:6:\"/about\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:2;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:18:\"{\"en\": \"About Us\"}\";s:3:\"url\";s:6:\"/about\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:5:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:3;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:17:\"{\"en\": \"History\"}\";s:3:\"url\";s:14:\"/about/history\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:3;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:17:\"{\"en\": \"History\"}\";s:3:\"url\";s:14:\"/about/history\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:4;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:26:\"{\"en\": \"Mission & Vision\"}\";s:3:\"url\";s:14:\"/about/mission\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:4;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:26:\"{\"en\": \"Mission & Vision\"}\";s:3:\"url\";s:14:\"/about/mission\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:5;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:28:\"{\"en\": \"Board of Directors\"}\";s:3:\"url\";s:12:\"/about/board\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:5;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:28:\"{\"en\": \"Board of Directors\"}\";s:3:\"url\";s:12:\"/about/board\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:6;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:20:\"{\"en\": \"Leadership\"}\";s:3:\"url\";s:17:\"/about/leadership\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:6;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:20:\"{\"en\": \"Leadership\"}\";s:3:\"url\";s:17:\"/about/leadership\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:7;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:33:\"{\"en\": \"Quality & Accreditation\"}\";s:3:\"url\";s:14:\"/about/quality\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:5;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:7;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:2;s:5:\"title\";s:33:\"{\"en\": \"Quality & Accreditation\"}\";s:3:\"url\";s:14:\"/about/quality\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:5;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:8;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:21:\"{\"en\": \"Departments\"}\";s:3:\"url\";s:12:\"/departments\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:8;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:21:\"{\"en\": \"Departments\"}\";s:3:\"url\";s:12:\"/departments\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:3:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:9;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:8;s:5:\"title\";s:19:\"{\"en\": \"Inpatient\"}\";s:3:\"url\";s:22:\"/departments/inpatient\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:9;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:8;s:5:\"title\";s:19:\"{\"en\": \"Inpatient\"}\";s:3:\"url\";s:22:\"/departments/inpatient\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:3:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:10;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:9;s:5:\"title\";s:19:\"{\"en\": \"ICU & CCU\"}\";s:3:\"url\";s:20:\"/departments/icu-ccu\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:10;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:9;s:5:\"title\";s:19:\"{\"en\": \"ICU & CCU\"}\";s:3:\"url\";s:20:\"/departments/icu-ccu\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:11;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:9;s:5:\"title\";s:30:\"{\"en\": \"General Surgery Ward\"}\";s:3:\"url\";s:33:\"/departments/general-surgery-ward\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:11;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:9;s:5:\"title\";s:30:\"{\"en\": \"General Surgery Ward\"}\";s:3:\"url\";s:33:\"/departments/general-surgery-ward\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:12;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:9;s:5:\"title\";s:24:\"{\"en\": \"Maternity Ward\"}\";s:3:\"url\";s:27:\"/departments/maternity-ward\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:12;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:9;s:5:\"title\";s:24:\"{\"en\": \"Maternity Ward\"}\";s:3:\"url\";s:27:\"/departments/maternity-ward\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:13;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:8;s:5:\"title\";s:17:\"{\"en\": \"Clinics\"}\";s:3:\"url\";s:20:\"/departments/clinics\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:13;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:8;s:5:\"title\";s:17:\"{\"en\": \"Clinics\"}\";s:3:\"url\";s:20:\"/departments/clinics\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:3:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:14;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:13;s:5:\"title\";s:27:\"{\"en\": \"Cardiology Clinic\"}\";s:3:\"url\";s:23:\"/departments/cardiology\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:14;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:13;s:5:\"title\";s:27:\"{\"en\": \"Cardiology Clinic\"}\";s:3:\"url\";s:23:\"/departments/cardiology\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:15;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:13;s:5:\"title\";s:28:\"{\"en\": \"Orthopedics Clinic\"}\";s:3:\"url\";s:24:\"/departments/orthopedics\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:15;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:13;s:5:\"title\";s:28:\"{\"en\": \"Orthopedics Clinic\"}\";s:3:\"url\";s:24:\"/departments/orthopedics\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:16;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:13;s:5:\"title\";s:27:\"{\"en\": \"Pediatrics Clinic\"}\";s:3:\"url\";s:23:\"/departments/pediatrics\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:16;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:13;s:5:\"title\";s:27:\"{\"en\": \"Pediatrics Clinic\"}\";s:3:\"url\";s:23:\"/departments/pediatrics\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:2;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:17;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:8;s:5:\"title\";s:22:\"{\"en\": \"Paraclinical\"}\";s:3:\"url\";s:25:\"/departments/paraclinical\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:17;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:8;s:5:\"title\";s:22:\"{\"en\": \"Paraclinical\"}\";s:3:\"url\";s:25:\"/departments/paraclinical\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:3;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:2:{i:0;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:18;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:17;s:5:\"title\";s:20:\"{\"en\": \"Laboratory\"}\";s:3:\"url\";s:23:\"/departments/laboratory\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:18;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:17;s:5:\"title\";s:20:\"{\"en\": \"Laboratory\"}\";s:3:\"url\";s:23:\"/departments/laboratory\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:1;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:1;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:19;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:17;s:5:\"title\";s:29:\"{\"en\": \"Radiology & Imaging\"}\";s:3:\"url\";s:22:\"/departments/radiology\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:19;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";i:17;s:5:\"title\";s:29:\"{\"en\": \"Radiology & Imaging\"}\";s:3:\"url\";s:22:\"/departments/radiology\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:2;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:0:{}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:3;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:20;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:17:\"{\"en\": \"Doctors\"}\";s:3:\"url\";s:8:\"/doctors\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:20;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:17:\"{\"en\": \"Doctors\"}\";s:3:\"url\";s:8:\"/doctors\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:4;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:4;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:21;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:27:\"{\"en\": \"Patient Education\"}\";s:3:\"url\";s:18:\"/patient-education\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:5;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:21;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:27:\"{\"en\": \"Patient Education\"}\";s:3:\"url\";s:18:\"/patient-education\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:5;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:5;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:22;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:32:\"{\"en\": \"International Patients\"}\";s:3:\"url\";s:14:\"/international\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:6;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:22;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:32:\"{\"en\": \"International Patients\"}\";s:3:\"url\";s:14:\"/international\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:6;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:6;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:23;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:32:\"{\"en\": \"Education and Research\"}\";s:3:\"url\";s:19:\"/education-research\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:7;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:23;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:32:\"{\"en\": \"Education and Research\"}\";s:3:\"url\";s:19:\"/education-research\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:7;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:7;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:24;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:20:\"{\"en\": \"Contact Us\"}\";s:3:\"url\";s:8:\"/contact\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:8;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:24;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:20:\"{\"en\": \"Contact Us\"}\";s:3:\"url\";s:8:\"/contact\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:8;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}i:8;O:19:\"App\\Models\\MenuItem\":36:{s:13:\"\0*\0connection\";s:5:\"mysql\";s:8:\"\0*\0table\";s:10:\"menu_items\";s:13:\"\0*\0primaryKey\";s:2:\"id\";s:10:\"\0*\0keyType\";s:3:\"int\";s:12:\"incrementing\";b:1;s:7:\"\0*\0with\";a:0:{}s:12:\"\0*\0withCount\";a:0:{}s:19:\"preventsLazyLoading\";b:0;s:10:\"\0*\0perPage\";i:15;s:6:\"exists\";b:1;s:18:\"wasRecentlyCreated\";b:0;s:28:\"\0*\0escapeWhenCastingToString\";b:0;s:13:\"\0*\0attributes\";a:15:{s:2:\"id\";i:25;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:23:\"{\"en\": \"Patient Guide\"}\";s:3:\"url\";s:14:\"/patient-guide\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:9;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:11:\"\0*\0original\";a:15:{s:2:\"id\";i:25;s:8:\"location\";s:6:\"header\";s:9:\"parent_id\";N;s:5:\"title\";s:23:\"{\"en\": \"Patient Guide\"}\";s:3:\"url\";s:14:\"/patient-guide\";s:7:\"page_id\";N;s:10:\"route_name\";N;s:6:\"target\";s:5:\"_self\";s:4:\"icon\";N;s:9:\"css_class\";N;s:9:\"is_active\";i:1;s:10:\"sort_order\";i:9;s:10:\"deleted_at\";N;s:10:\"created_at\";s:19:\"2026-09-17 09:00:58\";s:10:\"updated_at\";s:19:\"2026-09-17 09:00:58\";}s:10:\"\0*\0changes\";a:0:{}s:11:\"\0*\0previous\";a:0:{}s:8:\"\0*\0casts\";a:4:{s:9:\"is_active\";s:7:\"boolean\";s:10:\"sort_order\";s:7:\"integer\";s:5:\"title\";s:5:\"array\";s:10:\"deleted_at\";s:8:\"datetime\";}s:17:\"\0*\0classCastCache\";a:0:{}s:21:\"\0*\0attributeCastCache\";a:0:{}s:13:\"\0*\0dateFormat\";N;s:10:\"\0*\0appends\";a:0:{}s:19:\"\0*\0dispatchesEvents\";a:0:{}s:14:\"\0*\0observables\";a:0:{}s:12:\"\0*\0relations\";a:2:{s:8:\"children\";O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}s:4:\"page\";N;}s:10:\"\0*\0touches\";a:0:{}s:27:\"\0*\0relationAutoloadCallback\";N;s:26:\"\0*\0relationAutoloadContext\";N;s:10:\"timestamps\";b:1;s:13:\"usesUniqueIds\";b:0;s:9:\"\0*\0hidden\";a:0:{}s:10:\"\0*\0visible\";a:0:{}s:11:\"\0*\0fillable\";a:11:{i:0;s:8:\"location\";i:1;s:9:\"parent_id\";i:2;s:5:\"title\";i:3;s:3:\"url\";i:4;s:7:\"page_id\";i:5;s:10:\"route_name\";i:6;s:6:\"target\";i:7;s:4:\"icon\";i:8;s:9:\"css_class\";i:9;s:9:\"is_active\";i:10;s:10:\"sort_order\";}s:10:\"\0*\0guarded\";a:1:{i:0;s:1:\"*\";}s:12:\"translatable\";a:1:{i:0;s:5:\"title\";}s:20:\"\0*\0translationLocale\";N;s:16:\"\0*\0forceDeleting\";b:0;}}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}', 1789639515);
INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES
('ummat-hospital-cache-menus.mobile.en', 'O:39:\"Illuminate\\Database\\Eloquent\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}', 1789639515),
('ummat-hospital-cache-settings.all', 'a:75:{s:15:\"contact.address\";s:30:\"Kart-e-Naw, Kabul, Afghanistan\";s:13:\"contact.email\";s:26:\"info@ummathospital.example\";s:23:\"contact.emergency_phone\";s:15:\"+93 70 000 0000\";s:11:\"contact.fax\";s:15:\"+93 20 250 0001\";s:24:\"contact.google_map_embed\";s:262:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3281.5!2d69.18!3d34.53!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2sKabul!5e0!3m2!1sen!2s!4v1\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen loading=\"lazy\"></iframe>\";s:22:\"contact.google_map_url\";s:44:\"https://maps.google.com/?q=Kabul+Afghanistan\";s:18:\"contact.neshan_url\";s:19:\"https://neshan.org/\";s:13:\"contact.phone\";s:15:\"+93 20 250 0000\";s:16:\"contact.waze_url\";s:19:\"https://waze.com/ul\";s:23:\"email.mail_from_address\";s:29:\"noreply@ummathospital.example\";s:20:\"email.mail_from_name\";s:14:\"Ummat Hospital\";s:24:\"email.notification_email\";s:26:\"info@ummathospital.example\";s:12:\"footer.intro\";s:123:\"Ummat Super Specialty Hospital provides advanced medical care with a patient-centered approach across multiple specialties.\";s:24:\"footer.show_trust_badges\";b:1;s:17:\"general.copyright\";s:29:\"© 2026. All Rights Reserved.\";s:17:\"general.dark_logo\";N;s:24:\"general.developer_credit\";s:0:\"\";s:15:\"general.favicon\";N;s:21:\"general.hospital_name\";s:14:\"Ummat Hospital\";s:12:\"general.logo\";N;s:24:\"general.maintenance_mode\";b:0;s:19:\"general.native_name\";s:32:\"شفاخانه تخصصی امت\";s:18:\"general.short_name\";s:5:\"Ummat\";s:15:\"general.tagline\";s:53:\"Ummat Super Specialty Hospital — Excellence in Care\";s:21:\"general.working_hours\";s:65:\"Saturday–Thursday: 8:00 AM – 8:00 PM | Friday: Emergency only\";s:23:\"homepage.about_subtitle\";s:0:\"\";s:20:\"homepage.about_title\";s:0:\"\";s:28:\"homepage.certificates_accent\";s:15:\"Quality Assured\";s:30:\"homepage.certificates_subtitle\";s:45:\"Recognized standards in healthcare excellence\";s:27:\"homepage.certificates_title\";s:30:\"Certificates & Accreditations,\";s:23:\"homepage.doctors_accent\";s:21:\"Experts You Can Trust\";s:25:\"homepage.doctors_subtitle\";s:64:\"Meet our team of experienced physicians dedicated to your health\";s:22:\"homepage.doctors_title\";s:23:\"Our Specialist Doctors,\";s:19:\"homepage.faq_accent\";s:13:\"Quick Answers\";s:21:\"homepage.faq_subtitle\";s:51:\"Find answers to common questions about our services\";s:18:\"homepage.faq_title\";s:27:\"Frequently Asked Questions,\";s:23:\"homepage.gallery_accent\";s:15:\"Moments of Care\";s:25:\"homepage.gallery_subtitle\";s:62:\"A glimpse into our facilities and patient-centered environment\";s:22:\"homepage.gallery_title\";s:17:\"Hospital Gallery,\";s:25:\"homepage.insurance_accent\";s:24:\"Coverage You Can Rely On\";s:27:\"homepage.insurance_subtitle\";s:40:\"We work with leading insurance providers\";s:24:\"homepage.insurance_title\";s:19:\"Insurance Partners,\";s:20:\"homepage.news_accent\";s:13:\"Stay Informed\";s:22:\"homepage.news_subtitle\";s:51:\"Health tips, hospital updates, and medical insights\";s:19:\"homepage.news_title\";s:23:\"Latest News & Articles,\";s:24:\"homepage.services_accent\";s:20:\"Special Care for You\";s:26:\"homepage.services_subtitle\";s:102:\"Providing the most extensive medical and specialized services at the highest level of global standards\";s:23:\"homepage.services_title\";s:32:\"Ummat Hospital Medical Services,\";s:19:\"homepage.show_about\";b:1;s:26:\"homepage.show_certificates\";b:1;s:21:\"homepage.show_doctors\";b:1;s:17:\"homepage.show_faq\";b:1;s:21:\"homepage.show_gallery\";b:1;s:18:\"homepage.show_hero\";b:1;s:23:\"homepage.show_insurance\";b:1;s:18:\"homepage.show_news\";b:1;s:22:\"homepage.show_services\";b:1;s:26:\"homepage.show_testimonials\";b:1;s:28:\"homepage.testimonials_accent\";s:12:\"Real Stories\";s:30:\"homepage.testimonials_subtitle\";s:38:\"Trusted by families across Afghanistan\";s:27:\"homepage.testimonials_title\";s:22:\"What Our Patients Say,\";s:22:\"scripts.analytics_code\";s:0:\"\";s:22:\"scripts.footer_scripts\";s:0:\"\";s:22:\"scripts.header_scripts\";s:0:\"\";s:19:\"seo.address_country\";s:2:\"AF\";s:20:\"seo.address_locality\";s:5:\"Kabul\";s:20:\"seo.default_og_image\";N;s:27:\"seo.default_seo_description\";s:154:\"Ummat Hospital is a leading multi-specialty hospital in Kabul, Afghanistan, offering advanced medical care, expert doctors, and patient-centered services.\";s:24:\"seo.default_seo_keywords\";s:70:\"hospital, Kabul, Ummat Hospital, specialty care, doctors, appointments\";s:21:\"seo.default_seo_title\";s:46:\"Ummat Hospital | Super Specialty Care in Kabul\";s:15:\"social.facebook\";s:34:\"https://facebook.com/ummathospital\";s:16:\"social.instagram\";s:35:\"https://instagram.com/ummathospital\";s:15:\"social.linkedin\";s:42:\"https://linkedin.com/company/ummathospital\";s:14:\"social.twitter\";s:33:\"https://twitter.com/ummathospital\";s:14:\"social.youtube\";s:34:\"https://youtube.com/@ummathospital\";}', 1789639514),
('ummat-hospital-cache-settings.brand.address', 's:18:\"Kabul, Afghanistan\";', 1789639514),
('ummat-hospital-cache-settings.brand.email', 's:26:\"info@ummathospital.example\";', 1789639514),
('ummat-hospital-cache-settings.brand.name', 's:14:\"Ummat Hospital\";', 1789639514),
('ummat-hospital-cache-settings.brand.phone', 's:15:\"+93-20-000-0000\";', 1789639514),
('ummat-hospital-cache-settings.brand.tagline', 's:30:\"Ummat Super Specialty Hospital\";', 1789639514),
('ummat-hospital-cache-settings.contact.address', 's:30:\"Kart-e-Naw, Kabul, Afghanistan\";', 1789639514),
('ummat-hospital-cache-settings.contact.email', 's:26:\"info@ummathospital.example\";', 1789639514),
('ummat-hospital-cache-settings.contact.phone', 's:15:\"+93 20 250 0000\";', 1789639514),
('ummat-hospital-cache-settings.general.hospital_name', 's:14:\"Ummat Hospital\";', 1789639514),
('ummat-hospital-cache-settings.general.maintenance_mode', 'b:0;', 1789639514),
('ummat-hospital-cache-settings.general.tagline', 's:53:\"Ummat Super Specialty Hospital — Excellence in Care\";', 1789639514),
('ummat-hospital-cache-settings.seo.address_country', 's:2:\"AF\";', 1789639514),
('ummat-hospital-cache-settings.seo.address_locality', 's:5:\"Kabul\";', 1789639514),
('ummat-hospital-cache-settings.seo.default_og_image', 'N;', 1789639515),
('ummat-hospital-cache-settings.seo.default_seo_description', 's:154:\"Ummat Hospital is a leading multi-specialty hospital in Kabul, Afghanistan, offering advanced medical care, expert doctors, and patient-centered services.\";', 1789639515),
('ummat-hospital-cache-settings.seo.default_seo_keywords', 's:70:\"hospital, Kabul, Ummat Hospital, specialty care, doctors, appointments\";', 1789639515),
('ummat-hospital-cache-settings.seo.default_seo_title', 's:46:\"Ummat Hospital | Super Specialty Care in Kabul\";', 1789639515);

-- --------------------------------------------------------

--
-- Table structure for table `cache_locks`
--

CREATE TABLE `cache_locks` (
  `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `owner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` bigint NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `certificates`
--

CREATE TABLE `certificates` (
  `id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `issuing_organization` json DEFAULT NULL,
  `image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pdf_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `issue_date` date DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `description` json DEFAULT NULL,
  `verification_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `certificates`
--

INSERT INTO `certificates` (`id`, `name`, `issuing_organization`, `image_path`, `pdf_path`, `issue_date`, `expiry_date`, `description`, `verification_url`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"ISO 9001 Quality Management\"}', '{\"en\": \"International Organization for Standardization\"}', 'https://picsum.photos/seed/aria-cert1/600/400', NULL, '2024-09-17', NULL, '{\"en\": \"ISO 9001 Quality Management recognizing Ummat Hospital standards of care.\"}', NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Hospital Infection Control Certificate\"}', '{\"en\": \"Ministry of Public Health\"}', 'https://picsum.photos/seed/aria-cert2/600/400', NULL, '2025-09-17', NULL, '{\"en\": \"Hospital Infection Control Certificate recognizing Ummat Hospital standards of care.\"}', NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Patient Safety Excellence Award\"}', '{\"en\": \"Afghanistan Healthcare Forum\"}', 'https://picsum.photos/seed/aria-cert3/600/400', NULL, '2024-09-17', NULL, '{\"en\": \"Patient Safety Excellence Award recognizing Ummat Hospital standards of care.\"}', NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"Laboratory Quality Accreditation\"}', '{\"en\": \"National Reference Lab Program\"}', 'https://picsum.photos/seed/aria-cert4/600/400', NULL, '2025-09-17', NULL, '{\"en\": \"Laboratory Quality Accreditation recognizing Ummat Hospital standards of care.\"}', NULL, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `complaints`
--

CREATE TABLE `complaints` (
  `id` bigint UNSIGNED NOT NULL,
  `tracking_code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `department_id` bigint UNSIGNED DEFAULT NULL,
  `subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `attachment_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new',
  `admin_response` text COLLATE utf8mb4_unicode_ci,
  `internal_notes` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `contact_messages`
--

CREATE TABLE `contact_messages` (
  `id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `department` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `is_replied` tinyint(1) NOT NULL DEFAULT '0',
  `internal_notes` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `departments`
--

CREATE TABLE `departments` (
  `id` bigint UNSIGNED NOT NULL,
  `department_category_id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `slug` json NOT NULL,
  `short_description` json DEFAULT NULL,
  `description` json DEFAULT NULL,
  `featured_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `contact_phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `working_hours` json DEFAULT NULL,
  `services` json DEFAULT NULL,
  `seo_title` json DEFAULT NULL,
  `seo_description` json DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `departments`
--

INSERT INTO `departments` (`id`, `department_category_id`, `name`, `slug`, `short_description`, `description`, `featured_image`, `icon`, `contact_phone`, `location`, `working_hours`, `services`, `seo_title`, `seo_description`, `is_featured`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, '{\"en\": \"ICU & CCU\"}', '{\"en\": \"icu-ccu\"}', '{\"en\": \"ICU & CCU at Ummat Hospital provides specialized clinical care.\"}', '{\"en\": \"<p>The ICU & CCU team delivers evidence-based care with modern equipment and coordinated multidisciplinary support.</p>\"}', 'https://picsum.photos/seed/aria-dept-icu-ccu/900/600', NULL, '+93 20 250 0010', 'Main Building, Floor 1', '{\"en\": \"Sat–Thu 8:00–16:00\"}', '[\"Consultation\", \"Follow-up\", \"Inpatient coordination\"]', NULL, NULL, 1, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 1, '{\"en\": \"General Surgery Ward\"}', '{\"en\": \"general-surgery-ward\"}', '{\"en\": \"General Surgery Ward at Ummat Hospital provides specialized clinical care.\"}', '{\"en\": \"<p>The General Surgery Ward team delivers evidence-based care with modern equipment and coordinated multidisciplinary support.</p>\"}', 'https://picsum.photos/seed/aria-dept-general-surgery-ward/900/600', NULL, '+93 20 250 0011', 'Main Building, Floor 2', '{\"en\": \"Sat–Thu 8:00–16:00\"}', '[\"Consultation\", \"Follow-up\", \"Inpatient coordination\"]', NULL, NULL, 0, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 1, '{\"en\": \"Maternity Ward\"}', '{\"en\": \"maternity-ward\"}', '{\"en\": \"Maternity Ward at Ummat Hospital provides specialized clinical care.\"}', '{\"en\": \"<p>The Maternity Ward team delivers evidence-based care with modern equipment and coordinated multidisciplinary support.</p>\"}', 'https://picsum.photos/seed/aria-dept-maternity-ward/900/600', NULL, '+93 20 250 0012', 'Main Building, Floor 3', '{\"en\": \"Sat–Thu 8:00–16:00\"}', '[\"Consultation\", \"Follow-up\", \"Inpatient coordination\"]', NULL, NULL, 1, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, 2, '{\"en\": \"Cardiology Clinic\"}', '{\"en\": \"cardiology\"}', '{\"en\": \"Cardiology Clinic at Ummat Hospital provides specialized clinical care.\"}', '{\"en\": \"<p>The Cardiology Clinic team delivers evidence-based care with modern equipment and coordinated multidisciplinary support.</p>\"}', 'https://picsum.photos/seed/aria-dept-cardiology/900/600', NULL, '+93 20 250 0013', 'Main Building, Floor 4', '{\"en\": \"Sat–Thu 8:00–16:00\"}', '[\"Consultation\", \"Follow-up\", \"Inpatient coordination\"]', NULL, NULL, 1, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, 2, '{\"en\": \"Orthopedics Clinic\"}', '{\"en\": \"orthopedics\"}', '{\"en\": \"Orthopedics Clinic at Ummat Hospital provides specialized clinical care.\"}', '{\"en\": \"<p>The Orthopedics Clinic team delivers evidence-based care with modern equipment and coordinated multidisciplinary support.</p>\"}', 'https://picsum.photos/seed/aria-dept-orthopedics/900/600', NULL, '+93 20 250 0014', 'Main Building, Floor 1', '{\"en\": \"Sat–Thu 8:00–16:00\"}', '[\"Consultation\", \"Follow-up\", \"Inpatient coordination\"]', NULL, NULL, 1, 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, 2, '{\"en\": \"Pediatrics Clinic\"}', '{\"en\": \"pediatrics\"}', '{\"en\": \"Pediatrics Clinic at Ummat Hospital provides specialized clinical care.\"}', '{\"en\": \"<p>The Pediatrics Clinic team delivers evidence-based care with modern equipment and coordinated multidisciplinary support.</p>\"}', 'https://picsum.photos/seed/aria-dept-pediatrics/900/600', NULL, '+93 20 250 0015', 'Main Building, Floor 2', '{\"en\": \"Sat–Thu 8:00–16:00\"}', '[\"Consultation\", \"Follow-up\", \"Inpatient coordination\"]', NULL, NULL, 0, 1, 6, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(7, 3, '{\"en\": \"Laboratory\"}', '{\"en\": \"laboratory\"}', '{\"en\": \"Laboratory at Ummat Hospital provides specialized clinical care.\"}', '{\"en\": \"<p>The Laboratory team delivers evidence-based care with modern equipment and coordinated multidisciplinary support.</p>\"}', 'https://picsum.photos/seed/aria-dept-laboratory/900/600', NULL, '+93 20 250 0016', 'Main Building, Floor 3', '{\"en\": \"Sat–Thu 8:00–16:00\"}', '[\"Consultation\", \"Follow-up\", \"Inpatient coordination\"]', NULL, NULL, 1, 1, 7, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(8, 3, '{\"en\": \"Radiology & Imaging\"}', '{\"en\": \"radiology\"}', '{\"en\": \"Radiology & Imaging at Ummat Hospital provides specialized clinical care.\"}', '{\"en\": \"<p>The Radiology & Imaging team delivers evidence-based care with modern equipment and coordinated multidisciplinary support.</p>\"}', 'https://picsum.photos/seed/aria-dept-radiology/900/600', NULL, '+93 20 250 0017', 'Main Building, Floor 4', '{\"en\": \"Sat–Thu 8:00–16:00\"}', '[\"Consultation\", \"Follow-up\", \"Inpatient coordination\"]', NULL, NULL, 1, 1, 8, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `department_categories`
--

CREATE TABLE `department_categories` (
  `id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `slug` json NOT NULL,
  `description` json DEFAULT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `department_categories`
--

INSERT INTO `department_categories` (`id`, `name`, `slug`, `description`, `icon`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Inpatient\"}', '{\"en\": \"inpatient\"}', '{\"en\": \"Wards and intensive care units for admitted patients.\"}', 'bed', 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Clinics\"}', '{\"en\": \"clinics\"}', '{\"en\": \"Outpatient specialty clinics and consultation services.\"}', 'stethoscope', 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Paraclinical\"}', '{\"en\": \"paraclinical\"}', '{\"en\": \"Diagnostic and support services including lab and imaging.\"}', 'flask', 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `department_doctor`
--

CREATE TABLE `department_doctor` (
  `id` bigint UNSIGNED NOT NULL,
  `department_id` bigint UNSIGNED NOT NULL,
  `doctor_id` bigint UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `department_doctor`
--

INSERT INTO `department_doctor` (`id`, `department_id`, `doctor_id`, `created_at`, `updated_at`) VALUES
(1, 4, 1, NULL, NULL),
(2, 5, 2, NULL, NULL),
(3, 6, 3, NULL, NULL),
(4, 3, 4, NULL, NULL),
(5, 2, 5, NULL, NULL),
(6, 1, 6, NULL, NULL),
(7, 8, 7, NULL, NULL),
(8, 7, 8, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `doctors`
--

CREATE TABLE `doctors` (
  `id` bigint UNSIGNED NOT NULL,
  `specialty_id` bigint UNSIGNED DEFAULT NULL,
  `full_name` json NOT NULL,
  `slug` json NOT NULL,
  `academic_title` json DEFAULT NULL,
  `subspecialty` json DEFAULT NULL,
  `biography` json DEFAULT NULL,
  `education` json DEFAULT NULL,
  `experience` json DEFAULT NULL,
  `registration_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `languages` json DEFAULT NULL,
  `clinic_name` json DEFAULT NULL,
  `working_days` json DEFAULT NULL,
  `attendance_schedule` json DEFAULT NULL,
  `appointment_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `social_links` json DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `seo_title` json DEFAULT NULL,
  `seo_description` json DEFAULT NULL,
  `photo_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `doctors`
--

INSERT INTO `doctors` (`id`, `specialty_id`, `full_name`, `slug`, `academic_title`, `subspecialty`, `biography`, `education`, `experience`, `registration_number`, `languages`, `clinic_name`, `working_days`, `attendance_schedule`, `appointment_url`, `phone`, `email`, `social_links`, `is_featured`, `is_active`, `sort_order`, `seo_title`, `seo_description`, `photo_path`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, '{\"en\": \"Dr. Omar Nazari\"}', '{\"en\": \"omar-nazari\"}', '{\"en\": \"Consultant Cardiologist\"}', '{\"en\": \"Cardiology\"}', '{\"en\": \"Dr. Omar Nazari is a dedicated clinician providing patient-centered care at Ummat Hospital.\"}', '{\"en\": \"MD, Specialty Board Certification\"}', '{\"en\": \"10+ years of clinical practice\"}', 'AF-DOC-0001', '[\"English\", \"Dari\", \"Pashto\"]', '{\"en\": \"Cardiology Clinic\"}', '[0, 1, 2, 3, 4]', NULL, '/appointments', '+93 70 100 0001', 'omar.nazari@ummathospital.example', NULL, 1, 1, 1, NULL, NULL, 'https://i.pravatar.cc/300?u=doctor1', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 2, '{\"en\": \"Dr. Laila Habibi\"}', '{\"en\": \"laila-habibi\"}', '{\"en\": \"Orthopedic Surgeon\"}', '{\"en\": \"Orthopedics\"}', '{\"en\": \"Dr. Laila Habibi is a dedicated clinician providing patient-centered care at Ummat Hospital.\"}', '{\"en\": \"MD, Specialty Board Certification\"}', '{\"en\": \"10+ years of clinical practice\"}', 'AF-DOC-0002', '[\"English\", \"Dari\", \"Pashto\"]', '{\"en\": \"Orthopedics Clinic\"}', '[0, 1, 2, 3, 4]', NULL, '/appointments', '+93 70 100 0002', 'laila.habibi@ummathospital.example', NULL, 1, 1, 2, NULL, NULL, 'https://i.pravatar.cc/300?u=doctor2', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 3, '{\"en\": \"Dr. Karim Popal\"}', '{\"en\": \"karim-popal\"}', '{\"en\": \"Pediatric Specialist\"}', '{\"en\": \"Pediatrics\"}', '{\"en\": \"Dr. Karim Popal is a dedicated clinician providing patient-centered care at Ummat Hospital.\"}', '{\"en\": \"MD, Specialty Board Certification\"}', '{\"en\": \"10+ years of clinical practice\"}', 'AF-DOC-0003', '[\"English\", \"Dari\", \"Pashto\"]', '{\"en\": \"Pediatrics Clinic\"}', '[0, 1, 2, 3, 4]', NULL, '/appointments', '+93 70 100 0003', 'karim.popal@ummathospital.example', NULL, 1, 1, 3, NULL, NULL, 'https://i.pravatar.cc/300?u=doctor3', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, 5, '{\"en\": \"Dr. Nasrin Wardak\"}', '{\"en\": \"nasrin-wardak\"}', '{\"en\": \"OB/GYN Consultant\"}', '{\"en\": \"Obstetrics & Gynecology\"}', '{\"en\": \"Dr. Nasrin Wardak is a dedicated clinician providing patient-centered care at Ummat Hospital.\"}', '{\"en\": \"MD, Specialty Board Certification\"}', '{\"en\": \"10+ years of clinical practice\"}', 'AF-DOC-0004', '[\"English\", \"Dari\", \"Pashto\"]', '{\"en\": \"Maternity Ward\"}', '[0, 1, 2, 3, 4]', NULL, '/appointments', '+93 70 100 0004', 'nasrin.wardak@ummathospital.example', NULL, 1, 1, 4, NULL, NULL, 'https://i.pravatar.cc/300?u=doctor4', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, 4, '{\"en\": \"Dr. Farhad Salehi\"}', '{\"en\": \"farhad-salehi\"}', '{\"en\": \"General Surgeon\"}', '{\"en\": \"General Surgery\"}', '{\"en\": \"Dr. Farhad Salehi is a dedicated clinician providing patient-centered care at Ummat Hospital.\"}', '{\"en\": \"MD, Specialty Board Certification\"}', '{\"en\": \"10+ years of clinical practice\"}', 'AF-DOC-0005', '[\"English\", \"Dari\", \"Pashto\"]', '{\"en\": \"General Surgery Ward\"}', '[0, 1, 2, 3, 4]', NULL, '/appointments', '+93 70 100 0005', 'farhad.salehi@ummathospital.example', NULL, 0, 1, 5, NULL, NULL, 'https://i.pravatar.cc/300?u=doctor5', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, 1, '{\"en\": \"Dr. Mariam Kohistani\"}', '{\"en\": \"mariam-kohistani\"}', '{\"en\": \"Critical Care Physician\"}', '{\"en\": \"Cardiology\"}', '{\"en\": \"Dr. Mariam Kohistani is a dedicated clinician providing patient-centered care at Ummat Hospital.\"}', '{\"en\": \"MD, Specialty Board Certification\"}', '{\"en\": \"10+ years of clinical practice\"}', 'AF-DOC-0006', '[\"English\", \"Dari\", \"Pashto\"]', '{\"en\": \"ICU & CCU\"}', '[0, 1, 2, 3, 4]', NULL, '/appointments', '+93 70 100 0006', 'mariam.kohistani@ummathospital.example', NULL, 0, 1, 6, NULL, NULL, 'https://i.pravatar.cc/300?u=doctor6', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(7, 2, '{\"en\": \"Dr. Bashir Amini\"}', '{\"en\": \"bashir-amini\"}', '{\"en\": \"Musculoskeletal Imaging Lead\"}', '{\"en\": \"Orthopedics\"}', '{\"en\": \"Dr. Bashir Amini is a dedicated clinician providing patient-centered care at Ummat Hospital.\"}', '{\"en\": \"MD, Specialty Board Certification\"}', '{\"en\": \"10+ years of clinical practice\"}', 'AF-DOC-0007', '[\"English\", \"Dari\", \"Pashto\"]', '{\"en\": \"Radiology & Imaging\"}', '[0, 1, 2, 3, 4]', NULL, '/appointments', '+93 70 100 0007', 'bashir.amini@ummathospital.example', NULL, 0, 1, 7, NULL, NULL, 'https://i.pravatar.cc/300?u=doctor7', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(8, 3, '{\"en\": \"Dr. Helena Azizi\"}', '{\"en\": \"helena-azizi\"}', '{\"en\": \"Clinical Pathologist\"}', '{\"en\": \"Pediatrics\"}', '{\"en\": \"Dr. Helena Azizi is a dedicated clinician providing patient-centered care at Ummat Hospital.\"}', '{\"en\": \"MD, Specialty Board Certification\"}', '{\"en\": \"10+ years of clinical practice\"}', 'AF-DOC-0008', '[\"English\", \"Dari\", \"Pashto\"]', '{\"en\": \"Laboratory\"}', '[0, 1, 2, 3, 4]', NULL, '/appointments', '+93 70 100 0008', 'helena.azizi@ummathospital.example', NULL, 0, 1, 8, NULL, NULL, 'https://i.pravatar.cc/300?u=doctor8', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `doctor_schedules`
--

CREATE TABLE `doctor_schedules` (
  `id` bigint UNSIGNED NOT NULL,
  `doctor_id` bigint UNSIGNED NOT NULL,
  `day_of_week` tinyint UNSIGNED NOT NULL,
  `start_time` time DEFAULT NULL,
  `end_time` time DEFAULT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notes` json DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `doctor_schedules`
--

INSERT INTO `doctor_schedules` (`id`, `doctor_id`, `day_of_week`, `start_time`, `end_time`, `location`, `notes`, `is_active`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '09:00:00', '13:00:00', 'Outpatient Clinic', '{\"en\": \"Morning clinic hours\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 1, 3, '14:00:00', '17:00:00', 'Specialty Clinic', '{\"en\": \"Afternoon follow-up clinic\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 2, 2, '09:00:00', '13:00:00', 'Outpatient Clinic', '{\"en\": \"Morning clinic hours\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, 2, 4, '14:00:00', '17:00:00', 'Specialty Clinic', '{\"en\": \"Afternoon follow-up clinic\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, 3, 3, '09:00:00', '13:00:00', 'Outpatient Clinic', '{\"en\": \"Morning clinic hours\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, 3, 5, '14:00:00', '17:00:00', 'Specialty Clinic', '{\"en\": \"Afternoon follow-up clinic\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(7, 4, 4, '09:00:00', '13:00:00', 'Outpatient Clinic', '{\"en\": \"Morning clinic hours\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(8, 4, 1, '14:00:00', '17:00:00', 'Specialty Clinic', '{\"en\": \"Afternoon follow-up clinic\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(9, 5, 5, '09:00:00', '13:00:00', 'Outpatient Clinic', '{\"en\": \"Morning clinic hours\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(10, 5, 2, '14:00:00', '17:00:00', 'Specialty Clinic', '{\"en\": \"Afternoon follow-up clinic\"}', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `exports`
--

CREATE TABLE `exports` (
  `id` bigint UNSIGNED NOT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `file_disk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `file_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `exporter` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `processed_rows` int UNSIGNED NOT NULL DEFAULT '0',
  `total_rows` int UNSIGNED NOT NULL,
  `successful_rows` int UNSIGNED NOT NULL DEFAULT '0',
  `user_id` bigint UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `failed_jobs`
--

CREATE TABLE `failed_jobs` (
  `id` bigint UNSIGNED NOT NULL,
  `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `faqs`
--

CREATE TABLE `faqs` (
  `id` bigint UNSIGNED NOT NULL,
  `faq_category_id` bigint UNSIGNED DEFAULT NULL,
  `question` json NOT NULL,
  `answer` json NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `faqs`
--

INSERT INTO `faqs` (`id`, `faq_category_id`, `question`, `answer`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, '{\"en\": \"What are Ummat Hospital visiting hours?\"}', '{\"en\": \"Visiting hours are typically 4:00 PM to 7:00 PM daily. ICU visiting is limited and arranged with nursing staff.\"}', 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 1, '{\"en\": \"How do I book an appointment?\"}', '{\"en\": \"You can book online through our appointment page, call the hospital switchboard, or visit the outpatient desk.\"}', 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 1, '{\"en\": \"Do you accept insurance?\"}', '{\"en\": \"Yes. We work with multiple insurance partners. Please bring your policy card and contact our insurance desk for confirmation.\"}', 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, 1, '{\"en\": \"Is emergency care available 24/7?\"}', '{\"en\": \"Yes. Our emergency department operates around the clock with dedicated physicians and critical care support.\"}', 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, 1, '{\"en\": \"Where is Ummat Hospital located?\"}', '{\"en\": \"We are located in Kart-e-Naw, Kabul, Afghanistan. See the Contact page for maps and navigation links.\"}', 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `faq_categories`
--

CREATE TABLE `faq_categories` (
  `id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `slug` json NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `faq_categories`
--

INSERT INTO `faq_categories` (`id`, `name`, `slug`, `is_active`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"General\"}', '{\"en\": \"general\"}', 1, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Appointments\"}', '{\"en\": \"appointments\"}', 1, 2, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Insurance\"}', '{\"en\": \"insurance\"}', 1, 3, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"International Patients\"}', '{\"en\": \"international-patients\"}', 1, 4, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `gallery_albums`
--

CREATE TABLE `gallery_albums` (
  `id` bigint UNSIGNED NOT NULL,
  `gallery_category_id` bigint UNSIGNED DEFAULT NULL,
  `title` json NOT NULL,
  `slug` json NOT NULL,
  `description` json DEFAULT NULL,
  `cover_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gallery_albums`
--

INSERT INTO `gallery_albums` (`id`, `gallery_category_id`, `title`, `slug`, `description`, `cover_image`, `is_featured`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, '{\"en\": \"Life at Ummat Hospital\"}', '{\"en\": \"life-at-aria-hospital\"}', '{\"en\": \"A glimpse of our wards, clinics, and care teams.\"}', 'https://picsum.photos/seed/aria-gallery-cover/1200/800', 1, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `gallery_categories`
--

CREATE TABLE `gallery_categories` (
  `id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `slug` json NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gallery_categories`
--

INSERT INTO `gallery_categories` (`id`, `name`, `slug`, `is_active`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Hospital Facilities\"}', '{\"en\": \"hospital-facilities\"}', 1, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `gallery_items`
--

CREATE TABLE `gallery_items` (
  `id` bigint UNSIGNED NOT NULL,
  `gallery_album_id` bigint UNSIGNED NOT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'image',
  `title` json DEFAULT NULL,
  `caption` json DEFAULT NULL,
  `image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `video_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gallery_items`
--

INSERT INTO `gallery_items` (`id`, `gallery_album_id`, `type`, `title`, `caption`, `image_path`, `video_url`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, 1, 'image', '{\"en\": \"Gallery photo 1\"}', '{\"en\": \"Ummat Hospital facility highlight\"}', 'https://picsum.photos/seed/aria-gallery1/800/600', NULL, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 1, 'image', '{\"en\": \"Gallery photo 2\"}', '{\"en\": \"Ummat Hospital facility highlight\"}', 'https://picsum.photos/seed/aria-gallery2/800/600', NULL, 2, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 1, 'image', '{\"en\": \"Gallery photo 3\"}', '{\"en\": \"Ummat Hospital facility highlight\"}', 'https://picsum.photos/seed/aria-gallery3/800/600', NULL, 3, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, 1, 'image', '{\"en\": \"Gallery photo 4\"}', '{\"en\": \"Ummat Hospital facility highlight\"}', 'https://picsum.photos/seed/aria-gallery4/800/600', NULL, 4, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, 1, 'image', '{\"en\": \"Gallery photo 5\"}', '{\"en\": \"Ummat Hospital facility highlight\"}', 'https://picsum.photos/seed/aria-gallery5/800/600', NULL, 5, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, 1, 'image', '{\"en\": \"Gallery photo 6\"}', '{\"en\": \"Ummat Hospital facility highlight\"}', 'https://picsum.photos/seed/aria-gallery6/800/600', NULL, 6, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `hero_slides`
--

CREATE TABLE `hero_slides` (
  `id` bigint UNSIGNED NOT NULL,
  `title` json NOT NULL,
  `subtitle` json DEFAULT NULL,
  `description` json DEFAULT NULL,
  `desktop_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `primary_button_label` json DEFAULT NULL,
  `primary_button_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `secondary_button_label` json DEFAULT NULL,
  `secondary_button_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `text_alignment` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'left',
  `overlay_opacity` tinyint UNSIGNED NOT NULL DEFAULT '40',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `hero_slides`
--

INSERT INTO `hero_slides` (`id`, `title`, `subtitle`, `description`, `desktop_image`, `mobile_image`, `primary_button_label`, `primary_button_url`, `secondary_button_label`, `secondary_button_url`, `text_alignment`, `overlay_opacity`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Welcome to Ummat Hospital\"}', '{\"en\": \"Super Specialty Care in Kabul\"}', '{\"en\": \"Advanced medicine, compassionate teams, and patient-first service for Afghanistan and beyond.\"}', '/images/hero/1.jpg', '/images/hero/1.jpg', '{\"en\": \"Book Appointment\"}', '/appointments', '{\"en\": \"Find a Doctor\"}', '/doctors', 'left', 0, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Expert Doctors, Modern Facilities\"}', '{\"en\": \"Multidisciplinary Excellence\"}', '{\"en\": \"From cardiology to maternity care, our specialists deliver evidence-based treatment every day.\"}', '/images/hero/2.jpg', '/images/hero/2.jpg', '{\"en\": \"Our Departments\"}', '/departments', '{\"en\": \"Meet Our Doctors\"}', '/doctors', 'left', 0, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"24/7 Emergency Services\"}', '{\"en\": \"Always Ready When You Need Us\"}', '{\"en\": \"Round-the-clock emergency response with dedicated ICU, CCU, and trauma-ready teams.\"}', '/images/hero/3.jpg', '/images/hero/3.jpg', '{\"en\": \"Emergency Contact\"}', '/contact', '{\"en\": \"Patient Guide\"}', '/patient-guide', 'left', 0, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"International Patient Care\"}', '{\"en\": \"Support Across Borders\"}', '{\"en\": \"Visa guidance, accommodation support, and coordinated care for international patients.\"}', '/images/hero/4.jpg', '/images/hero/4.jpg', '{\"en\": \"Learn More\"}', '/international', '{\"en\": \"Contact Us\"}', '/contact', 'left', 0, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `insurance_partners`
--

CREATE TABLE `insurance_partners` (
  `id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `logo_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `website_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` json DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `insurance_partners`
--

INSERT INTO `insurance_partners` (`id`, `name`, `logo_path`, `website_url`, `description`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Afghan National Insurance\"}', 'https://picsum.photos/seed/aria-insurance1/300/150', 'https://example.com', '{\"en\": \"Afghan National Insurance partners with Ummat Hospital for covered medical services.\"}', 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Kabul Health Cover\"}', 'https://picsum.photos/seed/aria-insurance2/300/150', 'https://example.com', '{\"en\": \"Kabul Health Cover partners with Ummat Hospital for covered medical services.\"}', 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Silk Road Assurance\"}', 'https://picsum.photos/seed/aria-insurance3/300/150', 'https://example.com', '{\"en\": \"Silk Road Assurance partners with Ummat Hospital for covered medical services.\"}', 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"Pamir Medical Partners\"}', 'https://picsum.photos/seed/aria-insurance4/300/150', 'https://example.com', '{\"en\": \"Pamir Medical Partners partners with Ummat Hospital for covered medical services.\"}', 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, '{\"en\": \"Ariana Care Network\"}', 'https://picsum.photos/seed/aria-insurance5/300/150', 'https://example.com', '{\"en\": \"Ariana Care Network partners with Ummat Hospital for covered medical services.\"}', 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, '{\"en\": \"Hindukush Insurance Group\"}', 'https://picsum.photos/seed/aria-insurance6/300/150', 'https://example.com', '{\"en\": \"Hindukush Insurance Group partners with Ummat Hospital for covered medical services.\"}', 1, 6, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `international_documents`
--

CREATE TABLE `international_documents` (
  `id` bigint UNSIGNED NOT NULL,
  `title` json NOT NULL,
  `file_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` json DEFAULT NULL,
  `sort_order` int NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `international_sections`
--

CREATE TABLE `international_sections` (
  `id` bigint UNSIGNED NOT NULL,
  `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` json NOT NULL,
  `content` json DEFAULT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sort_order` int NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `international_sections`
--

INSERT INTO `international_sections` (`id`, `key`, `title`, `content`, `image`, `sort_order`, `is_active`, `created_at`, `updated_at`) VALUES
(1, 'intro', '{\"en\": \"Welcome International Patients\"}', '{\"en\": \"<p>Ummat Hospital welcomes patients from across the region with coordinated specialty care and dedicated international support.</p>\"}', 'https://picsum.photos/seed/aria-intl-intro/1000/600', 1, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 'visa', '{\"en\": \"Visa Support\"}', '{\"en\": \"<p>Our international desk can provide invitation letters and guidance to help patients and companions prepare travel documents.</p>\"}', 'https://picsum.photos/seed/aria-intl-visa/1000/600', 2, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 'accommodation', '{\"en\": \"Accommodation Assistance\"}', '{\"en\": \"<p>We help arrange nearby lodging options and coordinate with partner hotels for comfortable stays during treatment.</p>\"}', 'https://picsum.photos/seed/aria-intl-accommodation/1000/600', 3, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, 'transfer', '{\"en\": \"Airport Transfer\"}', '{\"en\": \"<p>Airport pickup and hospital transfer can be arranged so patients arrive safely and on time for appointments.</p>\"}', 'https://picsum.photos/seed/aria-intl-transfer/1000/600', 4, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, 'translation', '{\"en\": \"Translation Services\"}', '{\"en\": \"<p>Language support is available to help patients communicate clearly with clinical teams throughout their journey.</p>\"}', 'https://picsum.photos/seed/aria-intl-translation/1000/600', 5, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, 'journey', '{\"en\": \"Your Care Journey\"}', '{\"en\": \"<p>From first inquiry to discharge and follow-up, our care coordinators guide every step of the international patient pathway.</p>\"}', 'https://picsum.photos/seed/aria-intl-journey/1000/600', 6, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `intro_sections`
--

CREATE TABLE `intro_sections` (
  `id` bigint UNSIGNED NOT NULL,
  `section_label` json DEFAULT NULL,
  `heading` json NOT NULL,
  `description` json NOT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `video_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `button_label` json DEFAULT NULL,
  `button_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `intro_sections`
--

INSERT INTO `intro_sections` (`id`, `section_label`, `heading`, `description`, `image`, `video_url`, `button_label`, `button_url`, `is_active`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"About Ummat\"}', '{\"en\": \"Ummat Super Specialty Hospital\"}', '{\"en\": \"Ummat Hospital brings together experienced physicians, modern diagnostic technology, and a culture of compassion to serve patients across Kabul and the region. We focus on clinical excellence, clear communication, and continuous improvement in every department.\"}', '/images/about/main.jpg', NULL, '{\"en\": \"Learn more about us\"}', '/page/about', 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `jobs`
--

CREATE TABLE `jobs` (
  `id` bigint UNSIGNED NOT NULL,
  `queue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` smallint UNSIGNED NOT NULL,
  `reserved_at` int UNSIGNED DEFAULT NULL,
  `available_at` int UNSIGNED NOT NULL,
  `created_at` int UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `job_applications`
--

CREATE TABLE `job_applications` (
  `id` bigint UNSIGNED NOT NULL,
  `job_vacancy_id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `cover_letter` text COLLATE utf8mb4_unicode_ci,
  `cv_path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new',
  `internal_notes` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `job_batches`
--

CREATE TABLE `job_batches` (
  `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `total_jobs` int NOT NULL,
  `pending_jobs` int NOT NULL,
  `failed_jobs` int NOT NULL,
  `failed_job_ids` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` mediumtext COLLATE utf8mb4_unicode_ci,
  `cancelled_at` int DEFAULT NULL,
  `created_at` int NOT NULL,
  `finished_at` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `job_vacancies`
--

CREATE TABLE `job_vacancies` (
  `id` bigint UNSIGNED NOT NULL,
  `title` json NOT NULL,
  `slug` json NOT NULL,
  `description` json NOT NULL,
  `requirements` json DEFAULT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `employment_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `closes_at` date DEFAULT NULL,
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `job_vacancies`
--

INSERT INTO `job_vacancies` (`id`, `title`, `slug`, `description`, `requirements`, `location`, `employment_type`, `is_active`, `closes_at`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Registered Nurse — ICU\"}', '{\"en\": \"registered-nurse-icu\"}', '{\"en\": \"<p>Join our ICU nursing team to deliver high-acuity care with compassion and clinical excellence.</p>\"}', '{\"en\": \"<ul><li>Valid nursing license</li><li>ICU experience preferred</li><li>Strong communication skills in Dari or Pashto; English is an advantage</li></ul>\"}', 'Kabul, Afghanistan', 'full-time', 1, '2026-11-17', 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Medical Receptionist\"}', '{\"en\": \"medical-receptionist\"}', '{\"en\": \"<p>Support outpatient operations by welcoming patients, managing appointments, and coordinating front-desk services.</p>\"}', '{\"en\": \"<ul><li>Customer service experience</li><li>Basic computer skills</li><li>Professional and empathetic communication</li></ul>\"}', 'Kabul, Afghanistan', 'full-time', 1, '2026-10-17', 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `languages`
--

CREATE TABLE `languages` (
  `id` bigint UNSIGNED NOT NULL,
  `code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `native_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `direction` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ltr',
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `languages`
--

INSERT INTO `languages` (`id`, `code`, `name`, `native_name`, `direction`, `is_default`, `is_active`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, 'en', 'English', 'English', 'ltr', 1, 1, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 'fa-af', 'Dari', 'دری', 'rtl', 0, 1, 2, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 'ps', 'Pashto', 'پښتو', 'rtl', 0, 1, 3, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `media`
--

CREATE TABLE `media` (
  `id` bigint UNSIGNED NOT NULL,
  `model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `model_id` bigint UNSIGNED NOT NULL,
  `uuid` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `collection_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `mime_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `disk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `conversions_disk` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `size` bigint UNSIGNED NOT NULL,
  `manipulations` json NOT NULL,
  `custom_properties` json NOT NULL,
  `generated_conversions` json NOT NULL,
  `responsive_images` json NOT NULL,
  `order_column` int UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `medical_services`
--

CREATE TABLE `medical_services` (
  `id` bigint UNSIGNED NOT NULL,
  `title` json NOT NULL,
  `description` json NOT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `button_label` json DEFAULT NULL,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `link_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'internal',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `medical_services`
--

INSERT INTO `medical_services` (`id`, `title`, `description`, `icon`, `image`, `button_label`, `link_url`, `link_type`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Online Appointment\"}', '{\"en\": \"Schedule outpatient visits quickly through our online booking system.\"}', 'calendar', NULL, '{\"en\": \"Learn more\"}', '/appointments', 'internal', 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Patient Response\"}', '{\"en\": \"Ask questions and receive guidance from our patient response team.\"}', 'chat', NULL, '{\"en\": \"Learn more\"}', '/contact', 'internal', 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Check-up Packages\"}', '{\"en\": \"Comprehensive health check-up packages tailored to your needs.\"}', 'heart', NULL, '{\"en\": \"Learn more\"}', '/services/check-up', 'internal', 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"Doctor Search\"}', '{\"en\": \"Find the right specialist by name, specialty, or department.\"}', 'search', NULL, '{\"en\": \"Learn more\"}', '/doctors', 'internal', 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, '{\"en\": \"Infertility Care\"}', '{\"en\": \"Specialized fertility evaluation and treatment pathways.\"}', 'users', NULL, '{\"en\": \"Learn more\"}', '/departments', 'internal', 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, '{\"en\": \"Online Results\"}', '{\"en\": \"Access laboratory and imaging results securely online.\"}', 'document', NULL, '{\"en\": \"Learn more\"}', '/services/online-results', 'internal', 1, 6, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `menu_items`
--

CREATE TABLE `menu_items` (
  `id` bigint UNSIGNED NOT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` bigint UNSIGNED DEFAULT NULL,
  `title` json NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `page_id` bigint UNSIGNED DEFAULT NULL,
  `route_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `target` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `css_class` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `menu_items`
--

INSERT INTO `menu_items` (`id`, `location`, `parent_id`, `title`, `url`, `page_id`, `route_name`, `target`, `icon`, `css_class`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'header', NULL, '{\"en\": \"Home\"}', '/', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 'header', NULL, '{\"en\": \"About Us\"}', '/about', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 'header', 2, '{\"en\": \"History\"}', '/about/history', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, 'header', 2, '{\"en\": \"Mission & Vision\"}', '/about/mission', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, 'header', 2, '{\"en\": \"Board of Directors\"}', '/about/board', NULL, NULL, '_self', NULL, NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, 'header', 2, '{\"en\": \"Leadership\"}', '/about/leadership', NULL, NULL, '_self', NULL, NULL, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(7, 'header', 2, '{\"en\": \"Quality & Accreditation\"}', '/about/quality', NULL, NULL, '_self', NULL, NULL, 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(8, 'header', NULL, '{\"en\": \"Departments\"}', '/departments', NULL, NULL, '_self', NULL, NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(9, 'header', 8, '{\"en\": \"Inpatient\"}', '/departments/inpatient', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(10, 'header', 9, '{\"en\": \"ICU & CCU\"}', '/departments/icu-ccu', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(11, 'header', 9, '{\"en\": \"General Surgery Ward\"}', '/departments/general-surgery-ward', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(12, 'header', 9, '{\"en\": \"Maternity Ward\"}', '/departments/maternity-ward', NULL, NULL, '_self', NULL, NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(13, 'header', 8, '{\"en\": \"Clinics\"}', '/departments/clinics', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(14, 'header', 13, '{\"en\": \"Cardiology Clinic\"}', '/departments/cardiology', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(15, 'header', 13, '{\"en\": \"Orthopedics Clinic\"}', '/departments/orthopedics', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(16, 'header', 13, '{\"en\": \"Pediatrics Clinic\"}', '/departments/pediatrics', NULL, NULL, '_self', NULL, NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(17, 'header', 8, '{\"en\": \"Paraclinical\"}', '/departments/paraclinical', NULL, NULL, '_self', NULL, NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(18, 'header', 17, '{\"en\": \"Laboratory\"}', '/departments/laboratory', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(19, 'header', 17, '{\"en\": \"Radiology & Imaging\"}', '/departments/radiology', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(20, 'header', NULL, '{\"en\": \"Doctors\"}', '/doctors', NULL, NULL, '_self', NULL, NULL, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(21, 'header', NULL, '{\"en\": \"Patient Education\"}', '/patient-education', NULL, NULL, '_self', NULL, NULL, 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(22, 'header', NULL, '{\"en\": \"International Patients\"}', '/international', NULL, NULL, '_self', NULL, NULL, 1, 6, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(23, 'header', NULL, '{\"en\": \"Education and Research\"}', '/education-research', NULL, NULL, '_self', NULL, NULL, 1, 7, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(24, 'header', NULL, '{\"en\": \"Contact Us\"}', '/contact', NULL, NULL, '_self', NULL, NULL, 1, 8, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(25, 'header', NULL, '{\"en\": \"Patient Guide\"}', '/patient-guide', NULL, NULL, '_self', NULL, NULL, 1, 9, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(26, 'footer', NULL, '{\"en\": \"Useful Links\"}', '/about', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(27, 'footer', NULL, '{\"en\": \"Departments\"}', '/departments', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(28, 'footer', NULL, '{\"en\": \"Our Doctors\"}', '/doctors', NULL, NULL, '_self', NULL, NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(29, 'footer', NULL, '{\"en\": \"Careers\"}', '/careers', NULL, NULL, '_self', NULL, NULL, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(30, 'footer', NULL, '{\"en\": \"News\"}', '/news', NULL, NULL, '_self', NULL, NULL, 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(31, 'footer', NULL, '{\"en\": \"FAQs\"}', '/faqs', NULL, NULL, '_self', NULL, NULL, 1, 6, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(32, 'footer', NULL, '{\"en\": \"Insurance Partners\"}', '/insurance', NULL, NULL, '_self', NULL, NULL, 1, 7, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(33, 'footer', NULL, '{\"en\": \"Contact Us\"}', '/contact', NULL, NULL, '_self', NULL, NULL, 1, 8, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(34, 'footer_patient_guide', NULL, '{\"en\": \"Book an Appointment\"}', '/appointments', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(35, 'footer_patient_guide', NULL, '{\"en\": \"Visiting Hours\"}', '/patient-guide/visiting-hours', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(36, 'footer_patient_guide', NULL, '{\"en\": \"Admission Process\"}', '/patient-guide/admission', NULL, NULL, '_self', NULL, NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(37, 'footer_patient_guide', NULL, '{\"en\": \"Discharge Guide\"}', '/patient-guide/discharge', NULL, NULL, '_self', NULL, NULL, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(38, 'footer_patient_guide', NULL, '{\"en\": \"Patient Rights\"}', '/patient-guide/rights', NULL, NULL, '_self', NULL, NULL, 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(39, 'footer_patient_guide', NULL, '{\"en\": \"Complaints & Feedback\"}', '/complaints', NULL, NULL, '_self', NULL, NULL, 1, 6, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(40, 'appointment', NULL, '{\"en\": \"Online Appointment\"}', '/appointments', NULL, NULL, '_self', NULL, NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(41, 'appointment', NULL, '{\"en\": \"Find a Doctor\"}', '/doctors', NULL, NULL, '_self', NULL, NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(42, 'appointment', NULL, '{\"en\": \"Emergency Contact\"}', '/contact', NULL, NULL, '_self', NULL, NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(43, 'appointment', NULL, '{\"en\": \"International Desk\"}', '/international', NULL, NULL, '_self', NULL, NULL, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `migrations`
--

CREATE TABLE `migrations` (
  `id` int UNSIGNED NOT NULL,
  `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `migrations`
--

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '0001_01_01_000000_create_users_table', 1),
(2, '0001_01_01_000001_create_cache_table', 1),
(3, '0001_01_01_000002_create_jobs_table', 1),
(4, '2026_07_20_134633_create_activity_log_table', 1),
(5, '2026_07_20_134633_create_media_table', 1),
(6, '2026_07_20_134633_create_permission_tables', 1),
(7, '2026_07_20_134634_add_event_column_to_activity_log_table', 1),
(8, '2026_07_20_134635_add_batch_uuid_column_to_activity_log_table', 1),
(9, '2026_07_20_140000_create_hospital_cms_tables', 1),
(10, '2026_07_20_140001_add_fields_to_users_table', 1),
(11, '2026_07_20_180000_create_exports_table', 1),
(12, '2026_09_17_120000_seed_dynamic_cms_settings', 1),
(13, '2026_09_17_121000_grant_content_manager_cms_permissions', 1);

-- --------------------------------------------------------

--
-- Table structure for table `model_has_permissions`
--

CREATE TABLE `model_has_permissions` (
  `permission_id` bigint UNSIGNED NOT NULL,
  `model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `model_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `model_has_roles`
--

CREATE TABLE `model_has_roles` (
  `role_id` bigint UNSIGNED NOT NULL,
  `model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `model_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `model_has_roles`
--

INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES
(2, 'App\\Models\\User', 1),
(3, 'App\\Models\\User', 2),
(1, 'App\\Models\\User', 3),
(4, 'App\\Models\\User', 4),
(5, 'App\\Models\\User', 5);

-- --------------------------------------------------------

--
-- Table structure for table `newsletter_subscribers`
--

CREATE TABLE `newsletter_subscribers` (
  `id` bigint UNSIGNED NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `locale` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `pages`
--

CREATE TABLE `pages` (
  `id` bigint UNSIGNED NOT NULL,
  `title` json NOT NULL,
  `slug` json NOT NULL,
  `banner_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `excerpt` json DEFAULT NULL,
  `content` json DEFAULT NULL,
  `blocks` json DEFAULT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'draft',
  `published_at` timestamp NULL DEFAULT NULL,
  `seo_title` json DEFAULT NULL,
  `seo_description` json DEFAULT NULL,
  `seo_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `pages`
--

INSERT INTO `pages` (`id`, `title`, `slug`, `banner_path`, `excerpt`, `content`, `blocks`, `status`, `published_at`, `seo_title`, `seo_description`, `seo_image`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"About Us\"}', '{\"en\": \"about\"}', NULL, '{\"en\": \"Learn about Ummat Hospital’s mission, history, and commitment to specialty care in Kabul.\"}', '{\"en\": \"<p>Ummat Hospital is a multi-specialty healthcare center dedicated to delivering safe, modern, and compassionate medical services in Kabul, Afghanistan.</p>\"}', NULL, 'published', '2026-09-17 04:30:58', '{\"en\": \"About Us | Ummat Hospital\"}', '{\"en\": \"Learn about Ummat Hospital’s mission, history, and commitment to specialty care in Kabul.\"}', NULL, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Our History\"}', '{\"en\": \"history\"}', NULL, '{\"en\": \"The story of how Ummat Hospital grew into a trusted specialty hospital.\"}', '{\"en\": \"<p>Founded to expand access to advanced care in Kabul, Ummat Hospital has grown through continuous investment in people, technology, and patient experience.</p>\"}', NULL, 'published', '2026-09-17 04:30:58', '{\"en\": \"Our History | Ummat Hospital\"}', '{\"en\": \"The story of how Ummat Hospital grew into a trusted specialty hospital.\"}', NULL, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Mission & Vision\"}', '{\"en\": \"mission\"}', NULL, '{\"en\": \"Our mission and vision for healthcare excellence.\"}', '{\"en\": \"<p><strong>Mission:</strong> To provide high-quality, patient-centered specialty care.</p><p><strong>Vision:</strong> To be Afghanistan’s most trusted super specialty hospital.</p>\"}', NULL, 'published', '2026-09-17 04:30:58', '{\"en\": \"Mission & Vision | Ummat Hospital\"}', '{\"en\": \"Our mission and vision for healthcare excellence.\"}', NULL, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"Board of Directors\"}', '{\"en\": \"board\"}', NULL, '{\"en\": \"Governance and leadership oversight at Ummat Hospital.\"}', '{\"en\": \"<p>Our board provides strategic direction, quality oversight, and accountability to ensure sustainable clinical excellence.</p>\"}', NULL, 'published', '2026-09-17 04:30:58', '{\"en\": \"Board of Directors | Ummat Hospital\"}', '{\"en\": \"Governance and leadership oversight at Ummat Hospital.\"}', NULL, 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `password_reset_tokens`
--

CREATE TABLE `password_reset_tokens` (
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `permissions`
--

CREATE TABLE `permissions` (
  `id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `guard_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `permissions`
--

INSERT INTO `permissions` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES
(1, 'manage_settings', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(2, 'manage_seo', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(3, 'manage_insurance', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(4, 'view_dashboard', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(5, 'manage_pages', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(6, 'manage_menus', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(7, 'manage_doctors', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(8, 'manage_departments', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(9, 'manage_articles', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(10, 'manage_galleries', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(11, 'manage_appointments', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(12, 'manage_contacts', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(13, 'manage_complaints', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(14, 'manage_careers', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(15, 'manage_users', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(16, 'manage_faqs', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(17, 'manage_testimonials', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(18, 'manage_certificates', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(19, 'manage_international', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(20, 'manage_media', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(21, 'manage_redirects', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56');

-- --------------------------------------------------------

--
-- Table structure for table `redirects`
--

CREATE TABLE `redirects` (
  `id` bigint UNSIGNED NOT NULL,
  `from_path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `to_path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status_code` int NOT NULL DEFAULT '301',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `roles`
--

CREATE TABLE `roles` (
  `id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `guard_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `roles`
--

INSERT INTO `roles` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES
(1, 'Content Manager', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(2, 'Super Admin', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(3, 'Administrator', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(4, 'Appointment Manager', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(5, 'HR', 'web', '2026-09-17 04:30:56', '2026-09-17 04:30:56');

-- --------------------------------------------------------

--
-- Table structure for table `role_has_permissions`
--

CREATE TABLE `role_has_permissions` (
  `permission_id` bigint UNSIGNED NOT NULL,
  `role_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `role_has_permissions`
--

INSERT INTO `role_has_permissions` (`permission_id`, `role_id`) VALUES
(1, 1),
(2, 1),
(3, 1),
(4, 1),
(5, 1),
(6, 1),
(9, 1),
(10, 1),
(16, 1),
(17, 1),
(18, 1),
(19, 1),
(20, 1),
(1, 2),
(2, 2),
(3, 2),
(4, 2),
(5, 2),
(6, 2),
(7, 2),
(8, 2),
(9, 2),
(10, 2),
(11, 2),
(12, 2),
(13, 2),
(14, 2),
(15, 2),
(16, 2),
(17, 2),
(18, 2),
(19, 2),
(20, 2),
(21, 2),
(1, 3),
(2, 3),
(3, 3),
(4, 3),
(5, 3),
(6, 3),
(7, 3),
(8, 3),
(9, 3),
(10, 3),
(11, 3),
(12, 3),
(13, 3),
(14, 3),
(16, 3),
(17, 3),
(18, 3),
(19, 3),
(20, 3),
(21, 3),
(4, 4),
(11, 4),
(12, 4),
(13, 4),
(4, 5),
(14, 5);

-- --------------------------------------------------------

--
-- Table structure for table `sessions`
--

CREATE TABLE `sessions` (
  `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint UNSIGNED DEFAULT NULL,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_ci,
  `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_activity` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sessions`
--

INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES
('WliEcwaaATDBF7cVo6KoRTz6VzuD7Gatob8x8wtZ', NULL, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/152.0.0.0 Safari/537.36', 'eyJfdG9rZW4iOiJlcTIzZ0owWHk4TEJMN1k5OWg1RjJrTVhUV0xwQ1J3WHBDZ2FkeUM1IiwidmlzaXRvcl90cmFja2VkIjp0cnVlLCJfcHJldmlvdXMiOnsidXJsIjoiaHR0cDpcL1wvMTI3LjAuMC4xOjgwMDBcL2VuIiwicm91dGUiOiJob21lIn0sIl9mbGFzaCI6eyJvbGQiOltdLCJuZXciOltdfX0=', 1789635915);

-- --------------------------------------------------------

--
-- Table structure for table `settings`
--

CREATE TABLE `settings` (
  `id` bigint UNSIGNED NOT NULL,
  `group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `settings`
--

INSERT INTO `settings` (`id`, `group`, `key`, `value`, `created_at`, `updated_at`) VALUES
(1, 'general', 'hospital_name', '\"Ummat Hospital\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(2, 'general', 'short_name', '\"Ummat\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(3, 'general', 'native_name', '\"شفاخانه تخصصی امت\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(4, 'general', 'tagline', '\"Ummat Super Specialty Hospital — Excellence in Care\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(5, 'general', 'logo', NULL, '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(6, 'general', 'dark_logo', NULL, '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(7, 'general', 'favicon', NULL, '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(8, 'general', 'working_hours', '\"Saturday–Thursday: 8:00 AM – 8:00 PM | Friday: Emergency only\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(9, 'general', 'copyright', '\"© 2026. All Rights Reserved.\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(10, 'general', 'developer_credit', '\"\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(11, 'general', 'maintenance_mode', 'false', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(12, 'contact', 'address', '\"Kart-e-Naw, Kabul, Afghanistan\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(13, 'contact', 'phone', '\"+93 20 250 0000\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(14, 'contact', 'emergency_phone', '\"+93 70 000 0000\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(15, 'contact', 'fax', '\"+93 20 250 0001\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(16, 'contact', 'email', '\"info@ummathospital.example\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(17, 'contact', 'google_map_embed', '\"<iframe src=\\\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3281.5!2d69.18!3d34.53!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2sKabul!5e0!3m2!1sen!2s!4v1\\\" width=\\\"600\\\" height=\\\"450\\\" style=\\\"border:0;\\\" allowfullscreen loading=\\\"lazy\\\"></iframe>\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(18, 'contact', 'google_map_url', '\"https://maps.google.com/?q=Kabul+Afghanistan\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(19, 'contact', 'neshan_url', '\"https://neshan.org/\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(20, 'contact', 'waze_url', '\"https://waze.com/ul\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(21, 'footer', 'intro', '\"Ummat Super Specialty Hospital provides advanced medical care with a patient-centered approach across multiple specialties.\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(22, 'footer', 'show_trust_badges', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(23, 'seo', 'default_seo_title', '\"Ummat Hospital | Super Specialty Care in Kabul\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(24, 'seo', 'default_seo_description', '\"Ummat Hospital is a leading multi-specialty hospital in Kabul, Afghanistan, offering advanced medical care, expert doctors, and patient-centered services.\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(25, 'seo', 'default_seo_keywords', '\"hospital, Kabul, Ummat Hospital, specialty care, doctors, appointments\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(26, 'seo', 'default_og_image', NULL, '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(27, 'seo', 'address_locality', '\"Kabul\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(28, 'seo', 'address_country', '\"AF\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(29, 'email', 'notification_email', '\"info@ummathospital.example\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(30, 'email', 'mail_from_name', '\"Ummat Hospital\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(31, 'email', 'mail_from_address', '\"noreply@ummathospital.example\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(32, 'scripts', 'header_scripts', '\"\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(33, 'scripts', 'footer_scripts', '\"\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(34, 'scripts', 'analytics_code', '\"\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(35, 'social', 'facebook', '\"https://facebook.com/ummathospital\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(36, 'social', 'instagram', '\"https://instagram.com/ummathospital\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(37, 'social', 'twitter', '\"https://twitter.com/ummathospital\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(38, 'social', 'youtube', '\"https://youtube.com/@ummathospital\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(39, 'social', 'linkedin', '\"https://linkedin.com/company/ummathospital\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(40, 'homepage', 'show_hero', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(41, 'homepage', 'show_services', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(42, 'homepage', 'show_doctors', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(43, 'homepage', 'show_about', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(44, 'homepage', 'show_gallery', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(45, 'homepage', 'show_testimonials', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(46, 'homepage', 'show_insurance', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(47, 'homepage', 'show_certificates', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(48, 'homepage', 'show_news', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(49, 'homepage', 'show_faq', 'true', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(50, 'homepage', 'services_title', '\"Ummat Hospital Medical Services,\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(51, 'homepage', 'services_accent', '\"Special Care for You\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(52, 'homepage', 'services_subtitle', '\"Providing the most extensive medical and specialized services at the highest level of global standards\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(53, 'homepage', 'doctors_title', '\"Our Specialist Doctors,\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(54, 'homepage', 'doctors_accent', '\"Experts You Can Trust\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(55, 'homepage', 'doctors_subtitle', '\"Meet our team of experienced physicians dedicated to your health\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(56, 'homepage', 'about_title', '\"\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(57, 'homepage', 'about_subtitle', '\"\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(58, 'homepage', 'gallery_title', '\"Hospital Gallery,\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(59, 'homepage', 'gallery_accent', '\"Moments of Care\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(60, 'homepage', 'gallery_subtitle', '\"A glimpse into our facilities and patient-centered environment\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(61, 'homepage', 'testimonials_title', '\"What Our Patients Say,\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(62, 'homepage', 'testimonials_accent', '\"Real Stories\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(63, 'homepage', 'testimonials_subtitle', '\"Trusted by families across Afghanistan\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(64, 'homepage', 'insurance_title', '\"Insurance Partners,\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(65, 'homepage', 'insurance_accent', '\"Coverage You Can Rely On\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(66, 'homepage', 'insurance_subtitle', '\"We work with leading insurance providers\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(67, 'homepage', 'certificates_title', '\"Certificates & Accreditations,\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(68, 'homepage', 'certificates_accent', '\"Quality Assured\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(69, 'homepage', 'certificates_subtitle', '\"Recognized standards in healthcare excellence\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(70, 'homepage', 'news_title', '\"Latest News & Articles,\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(71, 'homepage', 'news_accent', '\"Stay Informed\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(72, 'homepage', 'news_subtitle', '\"Health tips, hospital updates, and medical insights\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(73, 'homepage', 'faq_title', '\"Frequently Asked Questions,\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(74, 'homepage', 'faq_accent', '\"Quick Answers\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56'),
(75, 'homepage', 'faq_subtitle', '\"Find answers to common questions about our services\"', '2026-09-17 04:30:56', '2026-09-17 04:30:56');

-- --------------------------------------------------------

--
-- Table structure for table `shortcut_links`
--

CREATE TABLE `shortcut_links` (
  `id` bigint UNSIGNED NOT NULL,
  `title` json NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'header',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `shortcut_links`
--

INSERT INTO `shortcut_links` (`id`, `title`, `url`, `icon`, `location`, `is_active`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Book Appointment\"}', '/appointments', 'calendar', 'appointment', 1, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Call Emergency\"}', 'tel:+93700000000', 'phone', 'appointment', 1, 2, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Patient Portal\"}', '/patient-guide', 'user', 'appointment', 1, 3, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"Lab Results\"}', '/services/online-results', 'document', 'appointment', 1, 4, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `social_links`
--

CREATE TABLE `social_links` (
  `id` bigint UNSIGNED NOT NULL,
  `platform` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `specialties`
--

CREATE TABLE `specialties` (
  `id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `slug` json NOT NULL,
  `description` json DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `specialties`
--

INSERT INTO `specialties` (`id`, `name`, `slug`, `description`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Cardiology\"}', '{\"en\": \"cardiology\"}', '{\"en\": \"Cardiology specialty services at Ummat Hospital.\"}', 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Orthopedics\"}', '{\"en\": \"orthopedics\"}', '{\"en\": \"Orthopedics specialty services at Ummat Hospital.\"}', 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Pediatrics\"}', '{\"en\": \"pediatrics\"}', '{\"en\": \"Pediatrics specialty services at Ummat Hospital.\"}', 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"General Surgery\"}', '{\"en\": \"general-surgery\"}', '{\"en\": \"General Surgery specialty services at Ummat Hospital.\"}', 1, 4, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, '{\"en\": \"Obstetrics & Gynecology\"}', '{\"en\": \"obgyn\"}', '{\"en\": \"Obstetrics & Gynecology specialty services at Ummat Hospital.\"}', 1, 5, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `statistics`
--

CREATE TABLE `statistics` (
  `id` bigint UNSIGNED NOT NULL,
  `title` json NOT NULL,
  `value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `suffix` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `statistics`
--

INSERT INTO `statistics` (`id`, `title`, `value`, `suffix`, `icon`, `is_active`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, '{\"en\": \"Specialist Doctors\"}', '120', '+', 'user-md', 1, 1, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, '{\"en\": \"Departments\"}', '35', '+', 'building', 1, 2, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, '{\"en\": \"Patients Served Yearly\"}', '85000', '+', 'users', 1, 3, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(4, '{\"en\": \"Years of Service\"}', '15', '+', 'award', 1, 4, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(5, '{\"en\": \"Hospital Beds\"}', '250', '+', 'bed', 1, 5, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(6, '{\"en\": \"Emergency Response\"}', '24', '/7', 'ambulance', 1, 6, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `tags`
--

CREATE TABLE `tags` (
  `id` bigint UNSIGNED NOT NULL,
  `name` json NOT NULL,
  `slug` json NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `testimonials`
--

CREATE TABLE `testimonials` (
  `id` bigint UNSIGNED NOT NULL,
  `patient_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `photo_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` json NOT NULL,
  `rating` tinyint UNSIGNED NOT NULL DEFAULT '5',
  `treatment` json DEFAULT NULL,
  `testimonial_date` date DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `is_approved` tinyint(1) NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `testimonials`
--

INSERT INTO `testimonials` (`id`, `patient_name`, `photo_path`, `content`, `rating`, `treatment`, `testimonial_date`, `is_featured`, `is_approved`, `is_active`, `sort_order`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Fatima Ahmadi', 'https://i.pravatar.cc/150?u=patient1', '{\"en\": \"The cardiology team explained every step clearly and made my family feel supported throughout treatment.\"}', 5, '{\"en\": \"Cardiology follow-up\"}', '2026-08-17', 1, 1, 1, 1, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(2, 'Ahmad Rahimi', 'https://i.pravatar.cc/150?u=patient2', '{\"en\": \"From admission to physiotherapy, the staff at Ummat Hospital were professional, kind, and highly skilled.\"}', 5, '{\"en\": \"Orthopedic surgery\"}', '2026-07-17', 1, 1, 1, 2, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58'),
(3, 'Sara Mohammadi', 'https://i.pravatar.cc/150?u=patient3', '{\"en\": \"I felt safe delivering my baby here. The maternity ward team was attentive day and night.\"}', 5, '{\"en\": \"Maternity care\"}', '2026-06-17', 1, 1, 1, 3, NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58');

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE `users` (
  `id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `locale` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `is_active`, `locale`) VALUES
(1, 'Super Admin', 'admin@ummathospital.example', '2026-09-17 04:30:57', '$2y$12$Smc1BNw6AMSYBj7VgzXgh.YbzVDVoNwn8eb12CG2FUgaF0XqVuQBK', NULL, '2026-09-17 04:30:57', '2026-09-17 04:31:03', 1, 'en'),
(2, 'Administrator', 'administrator@ummathospital.example', '2026-09-17 04:30:57', '$2y$12$dptFdY33NNrO8Iqy9ERGH.eJpmCV.1zZnKxncJ4NV3stpmK7xb4My', NULL, '2026-09-17 04:30:57', '2026-09-17 04:30:57', 1, 'en'),
(3, 'Content Manager', 'content@ummathospital.example', '2026-09-17 04:30:57', '$2y$12$fbNATZ2IZPeGcthxcDGn8eUoOxyHejcwEdc.rrh7wYh9yqD3bz.9u', NULL, '2026-09-17 04:30:57', '2026-09-17 04:30:57', 1, 'en'),
(4, 'Appointment Manager', 'appointments@ummathospital.example', '2026-09-17 04:30:57', '$2y$12$4p1Qp21e3NpqiflIzD40OuDZvn2gLK/d0NwA3O8hP5Dmpoq71mceW', NULL, '2026-09-17 04:30:57', '2026-09-17 04:30:57', 1, 'en'),
(5, 'HR Manager', 'hr@ummathospital.example', '2026-09-17 04:30:58', '$2y$12$w5HNinuXyZ/T65feH7DfiOGHUKCXb8jIX01PcxAr5asXfbhPxMl3G', NULL, '2026-09-17 04:30:58', '2026-09-17 04:30:58', 1, 'en');

-- --------------------------------------------------------

--
-- Table structure for table `visitor_stats`
--

CREATE TABLE `visitor_stats` (
  `id` bigint UNSIGNED NOT NULL,
  `date` date NOT NULL,
  `page_views` int UNSIGNED NOT NULL DEFAULT '0',
  `unique_visitors` int UNSIGNED NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `visitor_stats`
--

INSERT INTO `visitor_stats` (`id`, `date`, `page_views`, `unique_visitors`, `created_at`, `updated_at`) VALUES
(1, '2026-09-17', 1, 1, '2026-09-17 04:35:15', '2026-09-17 04:35:15');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `activity_log`
--
ALTER TABLE `activity_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `subject` (`subject_type`,`subject_id`),
  ADD KEY `causer` (`causer_type`,`causer_id`),
  ADD KEY `activity_log_log_name_index` (`log_name`);

--
-- Indexes for table `appointments`
--
ALTER TABLE `appointments`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `appointments_tracking_code_unique` (`tracking_code`),
  ADD KEY `appointments_doctor_id_foreign` (`doctor_id`),
  ADD KEY `appointments_department_id_foreign` (`department_id`),
  ADD KEY `appointments_assigned_to_foreign` (`assigned_to`);

--
-- Indexes for table `articles`
--
ALTER TABLE `articles`
  ADD PRIMARY KEY (`id`),
  ADD KEY `articles_article_category_id_foreign` (`article_category_id`),
  ADD KEY `articles_author_id_foreign` (`author_id`);

--
-- Indexes for table `article_categories`
--
ALTER TABLE `article_categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `article_tag`
--
ALTER TABLE `article_tag`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `article_tag_article_id_tag_id_unique` (`article_id`,`tag_id`),
  ADD KEY `article_tag_tag_id_foreign` (`tag_id`);

--
-- Indexes for table `cache`
--
ALTER TABLE `cache`
  ADD PRIMARY KEY (`key`),
  ADD KEY `cache_expiration_index` (`expiration`);

--
-- Indexes for table `cache_locks`
--
ALTER TABLE `cache_locks`
  ADD PRIMARY KEY (`key`),
  ADD KEY `cache_locks_expiration_index` (`expiration`);

--
-- Indexes for table `certificates`
--
ALTER TABLE `certificates`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `complaints`
--
ALTER TABLE `complaints`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `complaints_tracking_code_unique` (`tracking_code`),
  ADD KEY `complaints_department_id_foreign` (`department_id`);

--
-- Indexes for table `contact_messages`
--
ALTER TABLE `contact_messages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `departments`
--
ALTER TABLE `departments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `departments_department_category_id_foreign` (`department_category_id`);

--
-- Indexes for table `department_categories`
--
ALTER TABLE `department_categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `department_doctor`
--
ALTER TABLE `department_doctor`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `department_doctor_department_id_doctor_id_unique` (`department_id`,`doctor_id`),
  ADD KEY `department_doctor_doctor_id_foreign` (`doctor_id`);

--
-- Indexes for table `doctors`
--
ALTER TABLE `doctors`
  ADD PRIMARY KEY (`id`),
  ADD KEY `doctors_specialty_id_foreign` (`specialty_id`);

--
-- Indexes for table `doctor_schedules`
--
ALTER TABLE `doctor_schedules`
  ADD PRIMARY KEY (`id`),
  ADD KEY `doctor_schedules_doctor_id_foreign` (`doctor_id`);

--
-- Indexes for table `exports`
--
ALTER TABLE `exports`
  ADD PRIMARY KEY (`id`),
  ADD KEY `exports_user_id_foreign` (`user_id`);

--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`),
  ADD KEY `failed_jobs_connection_queue_failed_at_index` (`connection`,`queue`,`failed_at`);

--
-- Indexes for table `faqs`
--
ALTER TABLE `faqs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `faqs_faq_category_id_foreign` (`faq_category_id`);

--
-- Indexes for table `faq_categories`
--
ALTER TABLE `faq_categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gallery_albums`
--
ALTER TABLE `gallery_albums`
  ADD PRIMARY KEY (`id`),
  ADD KEY `gallery_albums_gallery_category_id_foreign` (`gallery_category_id`);

--
-- Indexes for table `gallery_categories`
--
ALTER TABLE `gallery_categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gallery_items`
--
ALTER TABLE `gallery_items`
  ADD PRIMARY KEY (`id`),
  ADD KEY `gallery_items_gallery_album_id_foreign` (`gallery_album_id`);

--
-- Indexes for table `hero_slides`
--
ALTER TABLE `hero_slides`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `insurance_partners`
--
ALTER TABLE `insurance_partners`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `international_documents`
--
ALTER TABLE `international_documents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `international_sections`
--
ALTER TABLE `international_sections`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `international_sections_key_unique` (`key`);

--
-- Indexes for table `intro_sections`
--
ALTER TABLE `intro_sections`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `jobs`
--
ALTER TABLE `jobs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `jobs_queue_index` (`queue`);

--
-- Indexes for table `job_applications`
--
ALTER TABLE `job_applications`
  ADD PRIMARY KEY (`id`),
  ADD KEY `job_applications_job_vacancy_id_foreign` (`job_vacancy_id`);

--
-- Indexes for table `job_batches`
--
ALTER TABLE `job_batches`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `job_vacancies`
--
ALTER TABLE `job_vacancies`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `languages`
--
ALTER TABLE `languages`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `languages_code_unique` (`code`);

--
-- Indexes for table `media`
--
ALTER TABLE `media`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `media_uuid_unique` (`uuid`),
  ADD KEY `media_model_type_model_id_index` (`model_type`,`model_id`),
  ADD KEY `media_order_column_index` (`order_column`);

--
-- Indexes for table `medical_services`
--
ALTER TABLE `medical_services`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `menu_items`
--
ALTER TABLE `menu_items`
  ADD PRIMARY KEY (`id`),
  ADD KEY `menu_items_parent_id_foreign` (`parent_id`),
  ADD KEY `menu_items_page_id_foreign` (`page_id`),
  ADD KEY `menu_items_location_index` (`location`);

--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `model_has_permissions`
--
ALTER TABLE `model_has_permissions`
  ADD PRIMARY KEY (`permission_id`,`model_id`,`model_type`),
  ADD KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`);

--
-- Indexes for table `model_has_roles`
--
ALTER TABLE `model_has_roles`
  ADD PRIMARY KEY (`role_id`,`model_id`,`model_type`),
  ADD KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`);

--
-- Indexes for table `newsletter_subscribers`
--
ALTER TABLE `newsletter_subscribers`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `newsletter_subscribers_email_unique` (`email`);

--
-- Indexes for table `pages`
--
ALTER TABLE `pages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `password_reset_tokens`
--
ALTER TABLE `password_reset_tokens`
  ADD PRIMARY KEY (`email`);

--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `permissions_name_guard_name_unique` (`name`,`guard_name`);

--
-- Indexes for table `redirects`
--
ALTER TABLE `redirects`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `redirects_from_path_unique` (`from_path`);

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `roles_name_guard_name_unique` (`name`,`guard_name`);

--
-- Indexes for table `role_has_permissions`
--
ALTER TABLE `role_has_permissions`
  ADD PRIMARY KEY (`permission_id`,`role_id`),
  ADD KEY `role_has_permissions_role_id_foreign` (`role_id`);

--
-- Indexes for table `sessions`
--
ALTER TABLE `sessions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `sessions_user_id_index` (`user_id`),
  ADD KEY `sessions_last_activity_index` (`last_activity`);

--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `settings_group_key_unique` (`group`,`key`);

--
-- Indexes for table `shortcut_links`
--
ALTER TABLE `shortcut_links`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `social_links`
--
ALTER TABLE `social_links`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `specialties`
--
ALTER TABLE `specialties`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `statistics`
--
ALTER TABLE `statistics`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tags`
--
ALTER TABLE `tags`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `testimonials`
--
ALTER TABLE `testimonials`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `users_email_unique` (`email`);

--
-- Indexes for table `visitor_stats`
--
ALTER TABLE `visitor_stats`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `visitor_stats_date_unique` (`date`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `activity_log`
--
ALTER TABLE `activity_log`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `appointments`
--
ALTER TABLE `appointments`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `articles`
--
ALTER TABLE `articles`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `article_categories`
--
ALTER TABLE `article_categories`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `article_tag`
--
ALTER TABLE `article_tag`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `certificates`
--
ALTER TABLE `certificates`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `complaints`
--
ALTER TABLE `complaints`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `contact_messages`
--
ALTER TABLE `contact_messages`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `departments`
--
ALTER TABLE `departments`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `department_categories`
--
ALTER TABLE `department_categories`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `department_doctor`
--
ALTER TABLE `department_doctor`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `doctors`
--
ALTER TABLE `doctors`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `doctor_schedules`
--
ALTER TABLE `doctor_schedules`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `exports`
--
ALTER TABLE `exports`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `faqs`
--
ALTER TABLE `faqs`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `faq_categories`
--
ALTER TABLE `faq_categories`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `gallery_albums`
--
ALTER TABLE `gallery_albums`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `gallery_categories`
--
ALTER TABLE `gallery_categories`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `gallery_items`
--
ALTER TABLE `gallery_items`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `hero_slides`
--
ALTER TABLE `hero_slides`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `insurance_partners`
--
ALTER TABLE `insurance_partners`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `international_documents`
--
ALTER TABLE `international_documents`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `international_sections`
--
ALTER TABLE `international_sections`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `intro_sections`
--
ALTER TABLE `intro_sections`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `jobs`
--
ALTER TABLE `jobs`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `job_applications`
--
ALTER TABLE `job_applications`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `job_vacancies`
--
ALTER TABLE `job_vacancies`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `languages`
--
ALTER TABLE `languages`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `media`
--
ALTER TABLE `media`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `medical_services`
--
ALTER TABLE `medical_services`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `menu_items`
--
ALTER TABLE `menu_items`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;

--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `newsletter_subscribers`
--
ALTER TABLE `newsletter_subscribers`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `pages`
--
ALTER TABLE `pages`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `redirects`
--
ALTER TABLE `redirects`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=76;

--
-- AUTO_INCREMENT for table `shortcut_links`
--
ALTER TABLE `shortcut_links`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `social_links`
--
ALTER TABLE `social_links`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `specialties`
--
ALTER TABLE `specialties`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `statistics`
--
ALTER TABLE `statistics`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `tags`
--
ALTER TABLE `tags`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `testimonials`
--
ALTER TABLE `testimonials`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `visitor_stats`
--
ALTER TABLE `visitor_stats`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `appointments`
--
ALTER TABLE `appointments`
  ADD CONSTRAINT `appointments_assigned_to_foreign` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `appointments_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `appointments_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `articles`
--
ALTER TABLE `articles`
  ADD CONSTRAINT `articles_article_category_id_foreign` FOREIGN KEY (`article_category_id`) REFERENCES `article_categories` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `articles_author_id_foreign` FOREIGN KEY (`author_id`) REFERENCES `users` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `article_tag`
--
ALTER TABLE `article_tag`
  ADD CONSTRAINT `article_tag_article_id_foreign` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `article_tag_tag_id_foreign` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `complaints`
--
ALTER TABLE `complaints`
  ADD CONSTRAINT `complaints_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `departments`
--
ALTER TABLE `departments`
  ADD CONSTRAINT `departments_department_category_id_foreign` FOREIGN KEY (`department_category_id`) REFERENCES `department_categories` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `department_doctor`
--
ALTER TABLE `department_doctor`
  ADD CONSTRAINT `department_doctor_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `department_doctor_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `doctors`
--
ALTER TABLE `doctors`
  ADD CONSTRAINT `doctors_specialty_id_foreign` FOREIGN KEY (`specialty_id`) REFERENCES `specialties` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `doctor_schedules`
--
ALTER TABLE `doctor_schedules`
  ADD CONSTRAINT `doctor_schedules_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `exports`
--
ALTER TABLE `exports`
  ADD CONSTRAINT `exports_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `faqs`
--
ALTER TABLE `faqs`
  ADD CONSTRAINT `faqs_faq_category_id_foreign` FOREIGN KEY (`faq_category_id`) REFERENCES `faq_categories` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `gallery_albums`
--
ALTER TABLE `gallery_albums`
  ADD CONSTRAINT `gallery_albums_gallery_category_id_foreign` FOREIGN KEY (`gallery_category_id`) REFERENCES `gallery_categories` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `gallery_items`
--
ALTER TABLE `gallery_items`
  ADD CONSTRAINT `gallery_items_gallery_album_id_foreign` FOREIGN KEY (`gallery_album_id`) REFERENCES `gallery_albums` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `job_applications`
--
ALTER TABLE `job_applications`
  ADD CONSTRAINT `job_applications_job_vacancy_id_foreign` FOREIGN KEY (`job_vacancy_id`) REFERENCES `job_vacancies` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `menu_items`
--
ALTER TABLE `menu_items`
  ADD CONSTRAINT `menu_items_page_id_foreign` FOREIGN KEY (`page_id`) REFERENCES `pages` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `menu_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `menu_items` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `model_has_permissions`
--
ALTER TABLE `model_has_permissions`
  ADD CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `model_has_roles`
--
ALTER TABLE `model_has_roles`
  ADD CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `role_has_permissions`
--
ALTER TABLE `role_has_permissions`
  ADD CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
