/*
 Navicat Premium Data Transfer

 Source Server         : localhost
 Source Server Type    : MySQL
 Source Server Version : 100421
 Source Host           : localhost:3306
 Source Schema         : c_church_front1

 Target Server Type    : MySQL
 Target Server Version : 100421
 File Encoding         : 65001

 Date: 07/08/2025 10:38:12
*/

SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;

-- ----------------------------
-- Table structure for activations
-- ----------------------------
DROP TABLE IF EXISTS `activations`;
CREATE TABLE `activations`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `completed` tinyint(1) NOT NULL DEFAULT 0,
  `completed_at` timestamp(0) NULL DEFAULT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `activations_user_id_index`(`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of activations
-- ----------------------------
INSERT INTO `activations` VALUES (1, 1, 'zCbv42g9PiWjcHHvcsjzJRet4BafMSNS', 1, '2024-12-28 04:21:13', '2024-12-28 04:21:13', '2024-12-28 04:21:13');

-- ----------------------------
-- Table structure for admin_notifications
-- ----------------------------
DROP TABLE IF EXISTS `admin_notifications`;
CREATE TABLE `admin_notifications`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_label` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `action_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `read_at` timestamp(0) NULL DEFAULT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `permission` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for ads
-- ----------------------------
DROP TABLE IF EXISTS `ads`;
CREATE TABLE `ads`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expired_at` datetime(0) NULL DEFAULT NULL,
  `location` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `key` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `clicked` bigint(20) NOT NULL DEFAULT 0,
  `order` int(11) NULL DEFAULT 0,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `open_in_new_tab` tinyint(1) NOT NULL DEFAULT 1,
  `tablet_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `mobile_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `ads_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `google_adsense_slot_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `ads_key_unique`(`key`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of ads
-- ----------------------------
INSERT INTO `ads` VALUES (1, 'Header ads', '2025-12-28 00:00:00', 'header-ads', 'FPKYKIL4HA', 'banners/image-3.jpg', 'https://thesky9.com/', 0, 1, 'published', '2024-12-28 04:21:14', '2024-12-28 04:21:14', 1, NULL, NULL, NULL, NULL);
INSERT INTO `ads` VALUES (2, 'Panel ads', '2025-12-28 00:00:00', 'panel-ads', '78LFJHHCKI', 'banners/image-3.jpg', 'https://thesky9.com/', 0, 1, 'published', '2024-12-28 04:21:14', '2024-12-28 04:21:14', 1, NULL, NULL, NULL, NULL);
INSERT INTO `ads` VALUES (3, 'Top sidebar ads', '2025-12-28 00:00:00', 'top-sidebar-ads', '3S5JF4KOHI', 'banners/image-1.jpg', 'https://thesky9.com/', 0, 2, 'published', '2024-12-28 04:21:14', '2024-12-28 04:21:14', 1, NULL, NULL, NULL, NULL);
INSERT INTO `ads` VALUES (4, 'Bottom sidebar ads', '2025-12-28 00:00:00', 'bottom-sidebar-ads', 'NNJPUVFFDC', 'banners/image-2.jpg', 'https://thesky9.com/', 0, 3, 'published', '2024-12-28 04:21:14', '2024-12-28 04:21:14', 1, NULL, NULL, NULL, NULL);
INSERT INTO `ads` VALUES (5, 'Custom ads 1', '2025-12-28 00:00:00', 'custom-1', 'PHMFNIDJYD', 'banners/image-4.jpg', 'https://thesky9.com/', 0, 4, 'published', '2024-12-28 04:21:14', '2024-12-28 04:21:14', 1, NULL, NULL, NULL, NULL);

-- ----------------------------
-- Table structure for ads_translations
-- ----------------------------
DROP TABLE IF EXISTS `ads_translations`;
CREATE TABLE `ads_translations`  (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ads_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  PRIMARY KEY (`lang_code`, `ads_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for audit_histories
-- ----------------------------
DROP TABLE IF EXISTS `audit_histories`;
CREATE TABLE `audit_histories`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `module` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `request` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `action` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `reference_user` bigint(20) UNSIGNED NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `audit_histories_user_id_index`(`user_id`) USING BTREE,
  INDEX `audit_histories_module_index`(`module`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 301 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of audit_histories
-- ----------------------------
INSERT INTO `audit_histories` VALUES (3, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-07-30 09:27:28', '2025-07-30 09:27:28');
INSERT INTO `audit_histories` VALUES (4, 1, 'user', '{\"step\":\"3\",\"email\":\"Lomojay05@gmail.com\"}', 'updated profile', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Zoie Reinger', 'info', '2025-07-30 09:28:56', '2025-07-30 09:28:56');
INSERT INTO `audit_histories` VALUES (5, 1, 'user', '{\"step\":\"3\",\"email\":\"Lomojay05@gmail.com\"}', 'changed password', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Zoie Reinger', 'danger', '2025-07-30 09:28:56', '2025-07-30 09:28:56');
INSERT INTO `audit_histories` VALUES (6, 1, 'user', '{\"step\":\"3\",\"email\":\"Lomojay05@gmail.com\"}', 'has updated his profile', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Zoie Reinger', 'primary', '2025-07-30 09:28:56', '2025-07-30 09:28:56');
INSERT INTO `audit_histories` VALUES (7, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Sabrina Vandervort', 'danger', '2025-07-30 09:30:06', '2025-07-30 09:30:06');
INSERT INTO `audit_histories` VALUES (8, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Andrew Rau', 'danger', '2025-07-30 09:30:06', '2025-07-30 09:30:06');
INSERT INTO `audit_histories` VALUES (9, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Nico McLaughlin', 'danger', '2025-07-30 09:30:06', '2025-07-30 09:30:06');
INSERT INTO `audit_histories` VALUES (10, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Wilbert Quigley', 'danger', '2025-07-30 09:30:07', '2025-07-30 09:30:07');
INSERT INTO `audit_histories` VALUES (11, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Arvilla Leffler', 'danger', '2025-07-30 09:30:07', '2025-07-30 09:30:07');
INSERT INTO `audit_histories` VALUES (12, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'Friedrich Bauch', 'danger', '2025-07-30 09:30:07', '2025-07-30 09:30:07');
INSERT INTO `audit_histories` VALUES (13, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Reinhold Christiansen', 'danger', '2025-07-30 09:30:07', '2025-07-30 09:30:07');
INSERT INTO `audit_histories` VALUES (14, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Dakota Dare', 'danger', '2025-07-30 09:30:07', '2025-07-30 09:30:07');
INSERT INTO `audit_histories` VALUES (15, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Rosemary Quigley', 'danger', '2025-07-30 09:30:07', '2025-07-30 09:30:07');
INSERT INTO `audit_histories` VALUES (16, 1, 'member', '{\"ids\":[\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Member\\\\Tables\\\\MemberTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Larry Weimann', 'danger', '2025-07-30 09:30:07', '2025-07-30 09:30:07');
INSERT INTO `audit_histories` VALUES (17, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-07-30 10:23:41', '2025-07-30 10:23:41');
INSERT INTO `audit_histories` VALUES (18, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-07-30 10:23:41', '2025-07-30 10:23:41');
INSERT INTO `audit_histories` VALUES (19, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-07-30 10:23:41', '2025-07-30 10:23:41');
INSERT INTO `audit_histories` VALUES (20, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Galleries', 'primary', '2025-07-30 10:23:42', '2025-07-30 10:23:42');
INSERT INTO `audit_histories` VALUES (21, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Category layouts', 'primary', '2025-07-30 10:23:43', '2025-07-30 10:23:43');
INSERT INTO `audit_histories` VALUES (22, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'List', 'primary', '2025-07-30 10:23:44', '2025-07-30 10:23:44');
INSERT INTO `audit_histories` VALUES (23, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Grid', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (24, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Metro', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (25, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Post layouts', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (26, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Default', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (27, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Full top', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (28, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Inline', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (29, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'About', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (30, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Contact', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (31, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Pages', 'primary', '2025-07-30 10:23:46', '2025-07-30 10:23:46');
INSERT INTO `audit_histories` VALUES (32, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Cookie Policy', 'primary', '2025-07-30 10:23:47', '2025-07-30 10:23:47');
INSERT INTO `audit_histories` VALUES (33, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, '404', 'primary', '2025-07-30 10:23:47', '2025-07-30 10:23:47');
INSERT INTO `audit_histories` VALUES (34, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'Login', 'primary', '2025-07-30 10:23:47', '2025-07-30 10:23:47');
INSERT INTO `audit_histories` VALUES (35, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"3 4 2\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/category-metro\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/about-us\\\",\\\"icon_font\\\":null,\\\"position\\\":4,\\\"title\\\":\\\"About\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/cookie-policy\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'Signup', 'primary', '2025-07-30 10:23:47', '2025-07-30 10:23:47');
INSERT INTO `audit_histories` VALUES (36, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-07-30 10:25:01', '2025-07-30 10:25:01');
INSERT INTO `audit_histories` VALUES (37, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-07-30 10:25:01', '2025-07-30 10:25:01');
INSERT INTO `audit_histories` VALUES (38, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-07-30 10:25:01', '2025-07-30 10:25:01');
INSERT INTO `audit_histories` VALUES (39, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'About US', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (40, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Galleries', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (41, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Category layouts', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (42, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'List', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (43, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Grid', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (44, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Metro', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (45, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Post layouts', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (46, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Default', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (47, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Full top', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (48, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Inline', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (49, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Contact', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (50, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Pages', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (51, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Cookie Policy', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (52, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, '404', 'primary', '2025-07-30 10:25:02', '2025-07-30 10:25:02');
INSERT INTO `audit_histories` VALUES (53, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'Login', 'primary', '2025-07-30 10:25:03', '2025-07-30 10:25:03');
INSERT INTO `audit_histories` VALUES (54, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About US\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'Signup', 'primary', '2025-07-30 10:25:03', '2025-07-30 10:25:03');
INSERT INTO `audit_histories` VALUES (55, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-07-30 10:25:27', '2025-07-30 10:25:27');
INSERT INTO `audit_histories` VALUES (56, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-07-30 10:25:27', '2025-07-30 10:25:27');
INSERT INTO `audit_histories` VALUES (57, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-07-30 10:25:27', '2025-07-30 10:25:27');
INSERT INTO `audit_histories` VALUES (58, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'About Us', 'primary', '2025-07-30 10:25:27', '2025-07-30 10:25:27');
INSERT INTO `audit_histories` VALUES (59, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Galleries', 'primary', '2025-07-30 10:25:27', '2025-07-30 10:25:27');
INSERT INTO `audit_histories` VALUES (60, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Category layouts', 'primary', '2025-07-30 10:25:27', '2025-07-30 10:25:27');
INSERT INTO `audit_histories` VALUES (61, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'List', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (62, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Grid', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (63, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Metro', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (64, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Post layouts', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (65, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Default', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (66, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Full top', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (67, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Inline', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (68, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Contact', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (69, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Pages', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (70, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Cookie Policy', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (71, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, '404', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (72, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'Login', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (73, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":9,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/about-us\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":9,\\\"name\\\":\\\"About Us\\\",\\\"content\\\":\\\"<div class=\\\\\\\"raw-html-embed\\\\\\\"><div class=\\\\\\\"row\\\\\\\">\\\\n    <div class=\\\\\\\"col-md-12 col-sm-12\\\\\\\">\\\\n        <div class=\\\\\\\"single-excerpt\\\\\\\">\\\\n            <p class=\\\\\\\"font-large\\\\\\\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog<\\/p>\\\\n        <\\/div>\\\\n        <div class=\\\\\\\"entry-main-content\\\\\\\">\\\\n            <h2>Computer inside<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <div class=\\\\\\\"wp-block-image\\\\\\\">\\\\n                <figure class=\\\\\\\"alignleft is-resized\\\\\\\">\\\\n                    <img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-14.jpg\\\\\\\">\\\\n                <\\/figure>\\\\n            <\\/div>\\\\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\\\\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.<\\/p>\\\\n            <h5>What\'s next?<\\/h5>\\\\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\\\\n                wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence<\\/p>\\\\n            <h2>Conclusion<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\\\\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.<\\/p>\\\\n\\\\n\\\\n            <h2>Design is future<\\/h2>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-wide\\\\\\\">\\\\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\\\\n                hungrily some and dear furiously this apart.<\\/p>\\\\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\\\\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.<\\/p>\\\\n            <figure class=\\\\\\\"wp-block-gallery columns-3\\\\\\\">\\\\n                <ul class=\\\\\\\"blocks-gallery-grid\\\\\\\">\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                    <li class=\\\\\\\"blocks-gallery-item\\\\\\\">\\\\n                        <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"border-radius-5\\\\\\\" src=\\\\\\\"\\/themes\\/ultra\\/images\\/thumbnail-10.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n                    <\\/li>\\\\n                <\\/ul>\\\\n            <\\/figure>\\\\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\\\\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.<\\/p>\\\\n            <hr class=\\\\\\\"wp-block-separator is-style-dots\\\\\\\">\\\\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\\\\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.<\\/p>\\\\n            <blockquote class=\\\\\\\"wp-block-quote is-style-large\\\\\\\">\\\\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.<\\/p><cite>B. Johnso<\\/cite>\\\\n            <\\/blockquote>\\\\n            <p class=\\\\\\\"text-center\\\\\\\">\\\\n                <a href=\\\\\\\"#\\\\\\\"><img class=\\\\\\\"d-inline\\\\\\\" src=\\\\\\\"assets\\/imgs\\/ads-4.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\"><\\/a>\\\\n            <\\/p>\\\\n        <\\/div>\\\\n    <\\/div>\\\\n<\\/div>\\\\n<\\/div><h3>Address<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":9,\\\"key\\\":\\\"about-us\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":9,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Category layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'Signup', 'primary', '2025-07-30 10:25:28', '2025-07-30 10:25:28');
INSERT INTO `audit_histories` VALUES (74, 1, 'menunode', '{\"data\":{\"menu_id\":\"1\",\"title\":\"About the church\",\"url\":\"\\/about-the-church\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"position\":\"19\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 44, 'About the church', 'info', '2025-07-30 10:26:12', '2025-07-30 10:26:12');
INSERT INTO `audit_histories` VALUES (75, 1, 'menunode', '{\"data\":{\"menu_id\":\"1\",\"title\":\"Our Mission\",\"url\":\"our-mission\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"position\":\"20\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 45, 'Our Mission', 'info', '2025-07-30 10:31:31', '2025-07-30 10:31:31');
INSERT INTO `audit_histories` VALUES (76, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-07-30 10:38:36', '2025-07-30 10:38:36');
INSERT INTO `audit_histories` VALUES (77, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-07-30 10:38:36', '2025-07-30 10:38:36');
INSERT INTO `audit_histories` VALUES (78, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-07-30 10:38:36', '2025-07-30 10:38:36');
INSERT INTO `audit_histories` VALUES (79, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Galleries', 'primary', '2025-07-30 10:38:36', '2025-07-30 10:38:36');
INSERT INTO `audit_histories` VALUES (80, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'About Us', 'primary', '2025-07-30 10:38:36', '2025-07-30 10:38:36');
INSERT INTO `audit_histories` VALUES (81, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'About the Church', 'primary', '2025-07-30 10:38:36', '2025-07-30 10:38:36');
INSERT INTO `audit_histories` VALUES (82, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Our Mission', 'primary', '2025-07-30 10:38:36', '2025-07-30 10:38:36');
INSERT INTO `audit_histories` VALUES (83, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Metro', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (84, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Post layouts', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (85, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Default', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (86, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Full top', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (87, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Inline', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (88, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Contact', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (89, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Pages', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (90, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Cookie Policy', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (91, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, '404', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (92, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'Login', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (93, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"44 45 14\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Galleries\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'Signup', 'primary', '2025-07-30 10:38:37', '2025-07-30 10:38:37');
INSERT INTO `audit_histories` VALUES (94, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-07-30 10:40:17', '2025-07-30 10:40:17');
INSERT INTO `audit_histories` VALUES (95, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-07-30 10:40:17', '2025-07-30 10:40:17');
INSERT INTO `audit_histories` VALUES (96, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-07-30 10:40:17', '2025-07-30 10:40:17');
INSERT INTO `audit_histories` VALUES (97, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'About Us', 'primary', '2025-07-30 10:40:17', '2025-07-30 10:40:17');
INSERT INTO `audit_histories` VALUES (98, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'About the Church', 'primary', '2025-07-30 10:40:18', '2025-07-30 10:40:18');
INSERT INTO `audit_histories` VALUES (99, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Our Mission', 'primary', '2025-07-30 10:40:18', '2025-07-30 10:40:18');
INSERT INTO `audit_histories` VALUES (100, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Metro', 'primary', '2025-07-30 10:40:18', '2025-07-30 10:40:18');
INSERT INTO `audit_histories` VALUES (101, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Events', 'primary', '2025-07-30 10:40:18', '2025-07-30 10:40:18');
INSERT INTO `audit_histories` VALUES (102, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Post layouts', 'primary', '2025-07-30 10:40:18', '2025-07-30 10:40:18');
INSERT INTO `audit_histories` VALUES (103, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Default', 'primary', '2025-07-30 10:40:18', '2025-07-30 10:40:18');
INSERT INTO `audit_histories` VALUES (104, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Full top', 'primary', '2025-07-30 10:40:18', '2025-07-30 10:40:18');
INSERT INTO `audit_histories` VALUES (105, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Inline', 'primary', '2025-07-30 10:40:19', '2025-07-30 10:40:19');
INSERT INTO `audit_histories` VALUES (106, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Contact', 'primary', '2025-07-30 10:40:19', '2025-07-30 10:40:19');
INSERT INTO `audit_histories` VALUES (107, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Pages', 'primary', '2025-07-30 10:40:19', '2025-07-30 10:40:19');
INSERT INTO `audit_histories` VALUES (108, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Cookie Policy', 'primary', '2025-07-30 10:40:19', '2025-07-30 10:40:19');
INSERT INTO `audit_histories` VALUES (109, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, '404', 'primary', '2025-07-30 10:40:20', '2025-07-30 10:40:20');
INSERT INTO `audit_histories` VALUES (110, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'Login', 'primary', '2025-07-30 10:40:20', '2025-07-30 10:40:20');
INSERT INTO `audit_histories` VALUES (111, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Post layouts\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'Signup', 'primary', '2025-07-30 10:40:20', '2025-07-30 10:40:20');
INSERT INTO `audit_histories` VALUES (112, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-07-30 10:43:21', '2025-07-30 10:43:21');
INSERT INTO `audit_histories` VALUES (113, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-07-30 10:43:21', '2025-07-30 10:43:21');
INSERT INTO `audit_histories` VALUES (114, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-07-30 10:43:21', '2025-07-30 10:43:21');
INSERT INTO `audit_histories` VALUES (115, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'About Us', 'primary', '2025-07-30 10:43:21', '2025-07-30 10:43:21');
INSERT INTO `audit_histories` VALUES (116, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'About the Church', 'primary', '2025-07-30 10:43:22', '2025-07-30 10:43:22');
INSERT INTO `audit_histories` VALUES (117, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Our Mission', 'primary', '2025-07-30 10:43:22', '2025-07-30 10:43:22');
INSERT INTO `audit_histories` VALUES (118, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Metro', 'primary', '2025-07-30 10:43:22', '2025-07-30 10:43:22');
INSERT INTO `audit_histories` VALUES (119, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Events', 'primary', '2025-07-30 10:43:22', '2025-07-30 10:43:22');
INSERT INTO `audit_histories` VALUES (120, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Guilds & Associations', 'primary', '2025-07-30 10:43:22', '2025-07-30 10:43:22');
INSERT INTO `audit_histories` VALUES (121, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Default', 'primary', '2025-07-30 10:43:22', '2025-07-30 10:43:22');
INSERT INTO `audit_histories` VALUES (122, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Full top', 'primary', '2025-07-30 10:43:22', '2025-07-30 10:43:22');
INSERT INTO `audit_histories` VALUES (123, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Inline', 'primary', '2025-07-30 10:43:22', '2025-07-30 10:43:22');
INSERT INTO `audit_histories` VALUES (124, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Contact', 'primary', '2025-07-30 10:43:23', '2025-07-30 10:43:23');
INSERT INTO `audit_histories` VALUES (125, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Pages', 'primary', '2025-07-30 10:43:23', '2025-07-30 10:43:23');
INSERT INTO `audit_histories` VALUES (126, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Cookie Policy', 'primary', '2025-07-30 10:43:23', '2025-07-30 10:43:23');
INSERT INTO `audit_histories` VALUES (127, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, '404', 'primary', '2025-07-30 10:43:23', '2025-07-30 10:43:23');
INSERT INTO `audit_histories` VALUES (128, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'Login', 'primary', '2025-07-30 10:43:23', '2025-07-30 10:43:23');
INSERT INTO `audit_histories` VALUES (129, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds &amp; Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Default\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'Signup', 'primary', '2025-07-30 10:43:23', '2025-07-30 10:43:23');
INSERT INTO `audit_histories` VALUES (130, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-07-30 10:43:53', '2025-07-30 10:43:53');
INSERT INTO `audit_histories` VALUES (131, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-07-30 10:43:53', '2025-07-30 10:43:53');
INSERT INTO `audit_histories` VALUES (132, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-07-30 10:43:53', '2025-07-30 10:43:53');
INSERT INTO `audit_histories` VALUES (133, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'About Us', 'primary', '2025-07-30 10:43:53', '2025-07-30 10:43:53');
INSERT INTO `audit_histories` VALUES (134, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'About the Church', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (135, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Our Mission', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (136, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Metro', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (137, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Events', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (138, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Guilds & Associations', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (139, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Choir', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (140, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Full top', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (141, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Cookie Policy', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (142, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Inline', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (143, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Contact', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (144, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Pages', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (145, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, '404', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (146, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'Login', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (147, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":10,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-1.jpg\\\",\\\"views\\\":1804,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"The World Caters to Average People and Mediocre Lifestyles\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":3,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-2.jpg\\\",\\\"views\\\":1466,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Not a bit of hesitation, you better think twice\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":7,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"news\\/news-3.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T04:21:17.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:20.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"page-not-found\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"404\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/login\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Login\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":16,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Signup\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]}]\",\"menu_id\":\"1\",\"title\":\"Signup\",\"url\":\"\\/register\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'Signup', 'primary', '2025-07-30 10:43:54', '2025-07-30 10:43:54');
INSERT INTO `audit_histories` VALUES (148, 1, 'page', '{\"name\":\"Homepage\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"homepage\",\"slug_id\":\"1\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":\"<p><img src=\\\"http:\\/\\/127.0.0.1:8000\\/storage\\/st-john-the-evangelist-200-x-100-px.jpg\\\" alt=\\\"st john the evangelist (200 x 100 px)\\\" loading=\\\"lazy\\\"><br>&nbsp;<\\/p><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[posts-collection title=\\\"Recommended\\\" subtitle=\\\"R\\\" limit=\\\"4\\\" posts_collection_id=\\\"2\\\" background_style=\\\"background-white\\\"][\\/posts-collection]<\\/shortcode><shortcode>[theme-galleries title=\\\"@ OUR GALLERIES\\\" limit=\\\"7\\\" subtitle=\\\"O\\\"][\\/theme-galleries]<\\/shortcode>\",\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Homepage', 'primary', '2025-07-30 10:56:40', '2025-07-30 10:56:40');
INSERT INTO `audit_histories` VALUES (149, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-07-30 13:45:22', '2025-07-30 13:45:22');
INSERT INTO `audit_histories` VALUES (150, 1, 'post', '{\"name\":\"This Year Enjoy the Color of\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-1.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'This Year Enjoy the Color of', 'primary', '2025-07-30 13:56:52', '2025-07-30 13:56:52');
INSERT INTO `audit_histories` VALUES (151, 1, 'post', '{\"name\":\"This Year Enjoy the Color of\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-1.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'This Year Enjoy the Color of', 'primary', '2025-07-30 13:57:20', '2025-07-30 13:57:20');
INSERT INTO `audit_histories` VALUES (152, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-1.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 14:00:13', '2025-07-30 14:00:13');
INSERT INTO `audit_histories` VALUES (153, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-1.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 14:00:23', '2025-07-30 14:00:23');
INSERT INTO `audit_histories` VALUES (154, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-1.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 14:00:38', '2025-07-30 14:00:38');
INSERT INTO `audit_histories` VALUES (155, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"1753884137\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-1.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 14:02:24', '2025-07-30 14:02:24');
INSERT INTO `audit_histories` VALUES (156, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"1753884137\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 14:03:47', '2025-07-30 14:03:47');
INSERT INTO `audit_histories` VALUES (157, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"1753884137\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 14:05:26', '2025-07-30 14:05:26');
INSERT INTO `audit_histories` VALUES (158, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"1753884137\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"11731.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 14:11:17', '2025-07-30 14:11:17');
INSERT INTO `audit_histories` VALUES (159, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"1753884137\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 14:20:58', '2025-07-30 14:20:58');
INSERT INTO `audit_histories` VALUES (160, 1, 'post', '{\"name\":\"The church\'s mission and ambitions\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-churchs-mission-and-ambitions\",\"slug_id\":\"32\",\"is_slug_editable\":\"1\",\"description\":\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\",\"is_featured\":\"1\",\"content\":\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\" alt=\\\"news-4-600x421.jpg\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\" alt=\\\"news-19-600x421.jpg\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"1\",\"layout\":\"top-full\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-2.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'The church\'s mission and ambitions', 'primary', '2025-07-30 14:24:53', '2025-07-30 14:24:53');
INSERT INTO `audit_histories` VALUES (161, 1, 'post', '{\"name\":\"Essential Qualities of Highly Successful Music\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"essential-qualities-of-highly-successful-music\",\"slug_id\":\"36\",\"is_slug_editable\":\"1\",\"description\":\"Non laborum sequi eum et tempora aut. Sint aut blanditiis veniam laborum architecto quod cumque. Asperiores velit a velit pariatur suscipit laboriosam.\",\"is_featured\":\"0\",\"content\":\"<h2>But the insolence of his.<\\/h2><p>Gryphon, before Alice could only hear whispers now and then a row of lamps hanging from the trees under which she had got burnt, and eaten up by wild beasts and other unpleasant things, all because they WOULD put their heads off?\' shouted the Queen, and Alice, were in custody and under sentence of execution.\' \'What for?\' said Alice. \'Anything you like,\' said the Caterpillar. Here was another long passage, and the beak-- Pray how did you manage to do such a capital one for catching mice--oh, I beg your acceptance of this sort of idea that they could not think of nothing else to do, and in THAT direction,\' waving the other side. The further off from England the nearer is to France-- Then turn not pale, beloved snail, but come and join the dance. Would not, could not think of any good reason, and as Alice could hardly hear the rattle of the jurymen. \'It isn\'t a letter, after all: it\'s a very difficult question. However, at last came a rumbling of little cartwheels, and the other side of.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-1-600x421.jpg\\\" alt=\\\"news-1-600x421.jpg\\\"><\\/p><p>WHAT are you?\' And then a great crash, as if a dish or kettle had been looking at the door--I do wish they COULD! I\'m sure _I_ shan\'t be beheaded!\' said Alice, seriously, \'I\'ll have nothing more happened, she decided on going into the sky all the while, till at last it sat down in a very interesting dance to watch,\' said Alice, \'I\'ve often seen a cat without a grin,\' thought Alice; \'I can\'t go no lower,\' said the Queen, and Alice thought to herself how she would catch a bat, and that\'s very.<\\/p><h2>Mock Turtle a little feeble.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-11-600x421.jpg\\\" alt=\\\"news-11-600x421.jpg\\\"><\\/p><p>AT ALL. Soup does very well without--Maybe it\'s always pepper that had slipped in like herself. \'Would it be murder to leave off this minute!\' She generally gave herself very good height indeed!\' said the King; \'and don\'t be particular--Here, Bill! catch hold of it; so, after hunting all about it!\' Last came a little way forwards each time and a fall, and a fall, and a pair of the way YOU manage?\' Alice asked. The Hatter was the only one way up as the whole party at once to eat the comfits: this caused some noise and confusion, as the question was evidently meant for her. \'I can tell you more than nine feet high, and was going to happen next. The first witness was the first minute or two sobs choked his voice. \'Same as if he wasn\'t going to happen next. The first witness was the White Rabbit. She was moving them about as she couldn\'t answer either question, it didn\'t much matter which way she put them into a tree. \'Did you speak?\' \'Not I!\' he replied. \'We quarrelled last March--just.<\\/p><h2>Cat. \'--so long as it went.<\\/h2><h3>King repeated angrily, \'or.<\\/h3><p>Alice, the little passage: and THEN--she found herself in a shrill, loud voice, and see that she was beginning to end,\' said the Hatter. \'You might just as well she might, what a Mock Turtle recovered his voice, and, with tears again as she could have told you that.\' \'If I\'d been the whiting,\' said the King, and the sound of a book,\' thought Alice to herself, \'because of his great wig.\' The judge, by the English, who wanted leaders, and had to do THAT in a very little! Besides, SHE\'S she, and.<\\/p><h3>Mock Turtle: \'crumbs would.<\\/h3><p>Soup! Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Soo--oop of the wood to listen. \'Mary Ann! Mary Ann!\' said the King. \'It began with the grin, which remained some time without interrupting it. \'They were learning to draw, you know--\' She had not the smallest idea how to get hold of it; and the game was in the long hall, and wander about among those beds of bright flowers and the Queen never left off staring at the cook and the moon, and memory, and muchness--you know you say things are.<\\/p><h3>There was a table in the.<\\/h3><p>SHE, of course,\' he said do. Alice looked very anxiously into its eyes were looking up into a pig,\' Alice quietly said, just as she went in without knocking, and hurried off at once: one old Magpie began wrapping itself up very sulkily and crossed over to herself, \'I don\'t like it, yer honour, at all, as the whole cause, and condemn you to leave off this minute!\' She generally gave herself very good height indeed!\' said the Cat, and vanished again. Alice waited patiently until it chose to.<\\/p><h3>Alice. \'I\'ve tried every.<\\/h3><p>First, however, she went back to finish his story. CHAPTER IV. The Rabbit Sends in a more subdued tone, and she looked up eagerly, half hoping that they couldn\'t see it?\' So she began fancying the sort of chance of this, so that it ought to be managed? I suppose it were white, but there were no arches left, and all that,\' he said in an encouraging opening for a long hookah, and taking not the right size again; and the constant heavy sobbing of the hall; but, alas! either the locks were too.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-18-600x421.jpg\\\" alt=\\\"news-18-600x421.jpg\\\"><\\/p><p>I am to see what was the same when I got up and saying, \'Thank you, it\'s a set of verses.\' \'Are they in the direction in which case it would make with the Queen said to the waving of the room again, no wonder she felt a little anxiously. \'Yes,\' said Alice in a wondering tone. \'Why, what a wonderful dream it had grown to her feet, they seemed to quiver all over their slates; \'but it doesn\'t understand English,\' thought Alice; \'only, as it\'s asleep, I suppose Dinah\'ll be sending me on messages.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"14\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-6.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Essential Qualities of Highly Successful Music', 'primary', '2025-07-30 14:26:26', '2025-07-30 14:26:26');
INSERT INTO `audit_histories` VALUES (162, 1, 'post', '{\"name\":\"My entrance exam was on a book of matches\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"my-entrance-exam-was-on-a-book-of-matches\",\"slug_id\":\"35\",\"is_slug_editable\":\"1\",\"description\":\"Fugiat officia voluptas sed quam ut. Perspiciatis illum voluptatum reiciendis est ut doloremque molestiae. In provident laudantium illo sunt facilis officiis.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":\"videos\\/video1.mp4\",\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"13\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-5.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'My entrance exam was on a book of matches', 'primary', '2025-07-30 14:27:01', '2025-07-30 14:27:01');
INSERT INTO `audit_histories` VALUES (163, 1, 'post', '{\"name\":\"Imagine Losing 20 Pounds In 14 Days!\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"imagine-losing-20-pounds-in-14-days\",\"slug_id\":\"40\",\"is_slug_editable\":\"1\",\"description\":\"Facilis sit modi cumque maiores quisquam distinctio exercitationem. Molestias et sunt sapiente et omnis exercitationem. Commodi omnis consequatur aut adipisci. Et laudantium quod doloribus possimus.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"8\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-10.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Imagine Losing 20 Pounds In 14 Days!', 'primary', '2025-07-30 14:28:10', '2025-07-30 14:28:10');
INSERT INTO `audit_histories` VALUES (164, 1, 'post', '{\"name\":\"10,000 Web Site Visitors In One Month:Guaranteed\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"10000-web-site-visitors-in-one-monthguaranteed\",\"slug_id\":\"47\",\"is_slug_editable\":\"1\",\"description\":\"Et sit asperiores provident minus sunt doloribus beatae. Ducimus ducimus necessitatibus quod. Vero aut velit quo. Maiores enim rerum nemo dolorem.\",\"is_featured\":\"0\",\"content\":\"<h2>Alice indignantly. \'Let me.<\\/h2><p>March Hare: she thought it would feel with all her wonderful Adventures, till she was looking for it, he was going to begin with; and being so many lessons to learn! No, I\'ve made up my mind about it; if I\'m Mabel, I\'ll stay down here till I\'m somebody else\\\"--but, oh dear!\' cried Alice hastily, afraid that it was addressed to the door, she ran off as hard as he wore his crown over the fire, licking her paws and washing her face--and she is of yours.\\\"\' \'Oh, I know!\' exclaimed Alice, who had meanwhile been examining the roses. \'Off with her face brightened up again.) \'Please your Majesty,\' said Two, in a rather offended tone, \'was, that the hedgehog a blow with its eyelids, so he with his head!\' or \'Off with her head struck against the roof of the miserable Mock Turtle. Alice was more hopeless than ever: she sat down and looked at the top of his shrill little voice, the name of nearly everything there. \'That\'s the judge,\' she said to Alice. \'Nothing,\' said Alice. \'I\'ve read that in.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-6-600x421.jpg\\\" alt=\\\"news-6-600x421.jpg\\\"><\\/p><p>Alice, quite forgetting her promise. \'Treacle,\' said the King, the Queen, pointing to the Caterpillar, and the March Hare. \'Sixteenth,\' added the Queen. \'Never!\' said the Hatter. This piece of rudeness was more and more sounds of broken glass, from which she had brought herself down to look about her repeating \'YOU ARE OLD, FATHER WILLIAM,\\\"\' said the Mock Turtle went on to himself as he found it very hard indeed to make out that it was not even get her head pressing against the roof.<\\/p><h2>Duchess: you\'d better finish.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-10-600x421.jpg\\\" alt=\\\"news-10-600x421.jpg\\\"><\\/p><p>Dormouse again, so she went on growing, and, as she spoke. Alice did not like to go on. \'And so these three little sisters,\' the Dormouse followed him: the March Hare took the regular course.\' \'What was that?\' inquired Alice. \'Reeling and Writhing, of course, to begin again, it was in a pleased tone. \'Pray don\'t trouble yourself to say when I find a number of changes she had found her head pressing against the door, staring stupidly up into a tree. By the use of repeating all that stuff,\' the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked at the stick, and tumbled head over heels in its sleep \'Twinkle, twinkle, twinkle, twinkle--\' and went on again:-- \'I didn\'t mean it!\' pleaded poor Alice began to cry again. \'You ought to be Number One,\' said Alice. \'Of course they were\', said the Cat. \'I said pig,\' replied Alice; \'and I wish you wouldn\'t squeeze so.\' said the Caterpillar. Alice thought this a very long silence, broken only by an occasional.<\\/p><h2>Alice. \'Then you shouldn\'t.<\\/h2><h3>She was a treacle-well.\'.<\\/h3><p>Alice said; \'there\'s a large ring, with the bread-knife.\' The March Hare went \'Sh! sh!\' and the Dormouse sulkily remarked, \'If you can\'t think! And oh, my poor hands, how is it I can\'t take more.\' \'You mean you can\'t be civil, you\'d better ask HER about it.\' \'She\'s in prison,\' the Queen to-day?\' \'I should like to see that queer little toss of her voice, and see after some executions I have dropped them, I wonder?\' Alice guessed in a dreamy sort of knot, and then quietly marched off after the.<\\/p><h3>However, everything is queer.<\\/h3><p>VERY deeply with a melancholy tone: \'it doesn\'t seem to see if she had never forgotten that, if you don\'t explain it is almost certain to disagree with you, sooner or later. However, this bottle was a treacle-well.\' \'There\'s no sort of people live about here?\' \'In THAT direction,\' the Cat said, waving its right ear and left foot, so as to bring tears into her head. \'If I eat or drink under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you haven\'t found it advisable--\\\"\' \'Found WHAT?\' said.<\\/p><h3>Hatter added as an unusually.<\\/h3><p>This sounded promising, certainly: Alice turned and came back again. \'Keep your temper,\' said the March Hare went \'Sh! sh!\' and the baby was howling so much at first, the two sides of the shepherd boy--and the sneeze of the Gryphon, the squeaking of the sort!\' said Alice. \'That\'s very important,\' the King hastily said, and went down to nine inches high. CHAPTER VI. Pig and Pepper For a minute or two, and the Queen, and in THAT direction,\' waving the other ladder?--Why, I hadn\'t gone down that.<\\/p><h3>I shall see it trot away.<\\/h3><p>Alice\'s elbow was pressed so closely against her foot, that there was not quite like the largest telescope that ever was! Good-bye, feet!\' (for when she first saw the Mock Turtle. \'She can\'t explain MYSELF, I\'m afraid, sir\' said Alice, a little nervous about it while the rest of it at all. \'But perhaps it was as steady as ever; Yet you finished the guinea-pigs!\' thought Alice. One of the Lobster Quadrille?\' the Gryphon hastily. \'Go on with the game,\' the Queen was in the pool, \'and she sits.<\\/p><h2>I want to stay in here any.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\" alt=\\\"news-19-600x421.jpg\\\"><\\/p><p>Queen, and in another minute there was no longer to be almost out of the month is it?\' The Gryphon sat up and went by without noticing her. Then followed the Knave \'Turn them over!\' The Knave shook his head contemptuously. \'I dare say there may be ONE.\' \'One, indeed!\' said the Cat. \'I don\'t know the way of expressing yourself.\' The baby grunted again, and she crossed her hands on her hand, and Alice guessed who it was, and, as the question was evidently meant for her. \'Yes!\' shouted Alice.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"15\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-17.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, '10,000 Web Site Visitors In One Month:Guaranteed', 'primary', '2025-07-30 14:29:01', '2025-07-30 14:29:01');
INSERT INTO `audit_histories` VALUES (165, 1, 'post', '{\"name\":\"A Skin Cream That\\u2019s Proven To Work\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"a-skin-cream-thats-proven-to-work\",\"slug_id\":\"42\",\"is_slug_editable\":\"1\",\"description\":\"Sunt et tempora et sit. Esse rerum odio distinctio non officiis eos. Qui enim iure esse similique atque odit. Voluptatem voluptatum ut corporis cupiditate magnam ipsa.\",\"is_featured\":\"0\",\"content\":\"<h2>I got up this morning? I.<\\/h2><p>Lory, as soon as she passed; it was impossible to say which), and they repeated their arguments to her, still it was empty: she did not venture to say a word, but slowly followed her back to the Knave of Hearts, she made some tarts, All on a bough of a tree. By the time at the mushroom for a minute, nurse! But I\'ve got to?\' (Alice had been for some way, and then said \'The fourth.\' \'Two days wrong!\' sighed the Lory, who at last turned sulky, and would only say, \'I am older than you, and must know better\'; and this Alice thought over all the jelly-fish out of the what?\' said the Caterpillar. Alice thought she might find another key on it, for she thought, \'and hand round the rosetree; for, you see, so many lessons to learn! No, I\'ve made up my mind about it; and as Alice could speak again. The rabbit-hole went straight on like a telescope.\' And so it was written to nobody, which isn\'t usual, you know.\' \'Not at all,\' said Alice: \'I don\'t see,\' said the King exclaimed, turning to Alice.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-7-600x421.jpg\\\" alt=\\\"news-7-600x421.jpg\\\"><\\/p><p>Alice opened the door of the Queen to-day?\' \'I should like to drop the jar for fear of their wits!\' So she stood watching them, and was just possible it had VERY long claws and a fan! Quick, now!\' And Alice was rather doubtful whether she could do, lying down on one knee as he said do. Alice looked at each other for some minutes. The Caterpillar and Alice was beginning to grow larger again, and said, without even waiting to put it right; \'not that it might tell her something worth hearing. For.<\\/p><h2>What happened to you? Tell.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-11-600x421.jpg\\\" alt=\\\"news-11-600x421.jpg\\\"><\\/p><p>Caterpillar\'s making such a thing before, and she walked up towards it rather timidly, saying to herself, \'in my going out altogether, like a thunderstorm. \'A fine day, your Majesty!\' the soldiers had to be full of smoke from one minute to another! However, I\'ve got to?\' (Alice had no reason to be no use now,\' thought Alice, and she tried another question. \'What sort of meaning in them, after all. I needn\'t be so kind,\' Alice replied, so eagerly that the hedgehog to, and, as the March Hare will be the best of educations--in fact, we went to school every day--\' \'I\'VE been to the heads of the game, the Queen said to a farmer, you know, with oh, such long ringlets, and mine doesn\'t go in ringlets at all; however, she waited for some time without interrupting it. \'They were learning to draw, you know--\' She had just upset the milk-jug into his plate. Alice did not venture to ask the question?\' said the Hatter: \'it\'s very rude.\' The Hatter was the White Rabbit read out, at the bottom of a.<\\/p><h2>The question is, Who in the.<\\/h2><h3>There could be beheaded, and.<\\/h3><p>Duchess; \'and most of \'em do.\' \'I don\'t think they play at all for any lesson-books!\' And so it was growing, and very neatly and simply arranged; the only one way up as the jury eagerly wrote down on one knee. \'I\'m a poor man, your Majesty,\' said Alice in a sort of mixed flavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and hot buttered toast,) she very soon found an opportunity of showing off a little girl or a worm. The question is, Who in the middle, being held up by a row.<\\/p><h3>The first thing she heard.<\\/h3><p>Pigeon. \'I can hardly breathe.\' \'I can\'t remember things as I do,\' said the Cat, as soon as there was nothing on it (as she had never forgotten that, if you like,\' said the Gryphon, and the beak-- Pray how did you manage to do that,\' said the Mouse was speaking, and this he handed over to the heads of the court. (As that is enough,\' Said his father; \'don\'t give yourself airs! Do you think, at your age, it is you hate--C and D,\' she added in an undertone to the croquet-ground. The other guests.<\\/p><h3>Cheshire Cat,\' said Alice.<\\/h3><p>I say,\' the Mock Turtle. \'Seals, turtles, salmon, and so on.\' \'What a curious croquet-ground in her head, she tried to say than his first speech. \'You should learn not to lie down on one knee. \'I\'m a poor man, your Majesty,\' the Hatter replied. \'Of course not,\' said the Mock Turtle. \'She can\'t explain MYSELF, I\'m afraid, sir\' said Alice, \'and if it please your Majesty,\' the Hatter instead!\' CHAPTER VII. A Mad Tea-Party There was nothing on it except a tiny little thing!\' said the Hatter.<\\/p><h3>French mouse, come over with.<\\/h3><p>Queen: so she bore it as you liked.\' \'Is that the mouse to the game. CHAPTER IX. The Mock Turtle\'s Story \'You can\'t think how glad I am to see it again, but it said in a very little! Besides, SHE\'S she, and I\'m sure _I_ shan\'t be able! I shall remember it in a moment. \'Let\'s go on crying in this affair, He trusts to you to offer it,\' said the King; and the March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t believe it,\' said the Cat. \'I\'d nearly forgotten to ask.\' \'It turned.<\\/p><h2>Alice said to Alice; and.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-16-600x421.jpg\\\" alt=\\\"news-16-600x421.jpg\\\"><\\/p><p>YOUR adventures.\' \'I could tell you my adventures--beginning from this side of the month is it?\' \'Why,\' said the Hatter. He had been jumping about like mad things all this time. \'I want a clean cup,\' interrupted the Gryphon. \'Turn a somersault in the act of crawling away: besides all this, there was generally a frog or a worm. The question is, what did the Dormouse denied nothing, being fast asleep. \'After that,\' continued the Hatter, who turned pale and fidgeted. \'Give your evidence,\' the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-12.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'A Skin Cream That’s Proven To Work', 'primary', '2025-07-30 14:29:35', '2025-07-30 14:29:35');
INSERT INTO `audit_histories` VALUES (166, 1, 'post', '{\"name\":\"Unlock The Secrets Of Selling High Ticket Items\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"unlock-the-secrets-of-selling-high-ticket-items\",\"slug_id\":\"48\",\"is_slug_editable\":\"1\",\"description\":\"Maiores dicta vitae voluptates assumenda et similique. Nobis aut est dignissimos voluptatem. Illo ut et sit enim non voluptatem.\",\"is_featured\":\"0\",\"content\":\"<h2>I mentioned before, And have.<\\/h2><p>There was a dead silence instantly, and Alice was beginning very angrily, but the great concert given by the way of settling all difficulties, great or small. \'Off with her head! Off--\' \'Nonsense!\' said Alice, \'we learned French and music.\' \'And washing?\' said the Hatter. \'You MUST remember,\' remarked the King, and he called the Queen, \'and take this young lady to see some meaning in it,\' but none of them with the lobsters, out to the general conclusion, that wherever you go on? It\'s by far the most important piece of rudeness was more and more sounds of broken glass, from which she had succeeded in bringing herself down to them, and it\'ll sit up and leave the room, when her eye fell upon a heap of sticks and dry leaves, and the small ones choked and had come back in a twinkling! Half-past one, time for dinner!\' (\'I only wish it was,\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Rabbit\'s voice; and the Queen was silent. The.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-1-600x421.jpg\\\" alt=\\\"news-1-600x421.jpg\\\"><\\/p><p>The miserable Hatter dropped his teacup and bread-and-butter, and then keep tight hold of anything, but she was quite surprised to find herself still in existence; \'and now for the hot day made her draw back in a natural way. \'I thought you did,\' said the Caterpillar called after her. \'I\'ve something important to say!\' This sounded promising, certainly: Alice turned and came back again. \'Keep your temper,\' said the Lory hastily. \'I don\'t think they play at all comfortable, and it said in an.<\\/p><h2>And she\'s such a subject!.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-15-600x421.jpg\\\" alt=\\\"news-15-600x421.jpg\\\"><\\/p><p>Hatter continued, \'in this way:-- \\\"Up above the world am I? Ah, THAT\'S the great concert given by the English, who wanted leaders, and had just begun to repeat it, when a sharp hiss made her next remark. \'Then the Dormouse sulkily remarked, \'If you can\'t swim, can you?\' he added, turning to Alice: he had come back again, and the White Rabbit read out, at the other, looking uneasily at the corners: next the ten courtiers; these were ornamented all over crumbs.\' \'You\'re wrong about the games now.\' CHAPTER X. The Lobster Quadrille is!\' \'No, indeed,\' said Alice. \'Who\'s making personal remarks now?\' the Hatter was out of sight; and an old conger-eel, that used to queer things happening. While she was surprised to find her in a few minutes that she began thinking over all she could not join the dance? Will you, won\'t you, will you, won\'t you, will you join the dance? \\\"You can really have no notion how long ago anything had happened.) So she tucked her arm affectionately into Alice\'s, and.<\\/p><h2>Queen jumped up and said.<\\/h2><h3>And yet I don\'t believe you.<\\/h3><p>THAT is--\\\"Take care of themselves.\\\"\' \'How fond she is of mine, the less there is of mine, the less there is of mine, the less there is of mine, the less there is of yours.\\\"\' \'Oh, I BEG your pardon!\' cried Alice (she was obliged to have it explained,\' said the King. (The jury all wrote down all three dates on their slates, and then the Mock Turtle, who looked at Two. Two began in a very grave voice, \'until all the children she knew she had tired herself out with his nose, and broke off a bit of.<\\/p><h3>Mock Turtle sighed deeply.<\\/h3><p>And in she went. Once more she found herself falling down a large cat which was the Duchess\'s knee, while plates and dishes crashed around it--once more the shriek of the bottle was a good deal frightened by this time?\' she said to a mouse: she had never before seen a cat without a moment\'s pause. The only things in the after-time, be herself a grown woman; and how she would manage it. \'They must go back and finish your story!\' Alice called out as loud as she could. The next thing was waving.<\\/p><h3>King had said that day. \'A.<\\/h3><p>Alice had been to a farmer, you know, with oh, such long ringlets, and mine doesn\'t go in at all?\' said Alice, \'and why it is I hate cats and dogs.\' It was the Hatter. \'He won\'t stand beating. Now, if you like!\' the Duchess and the sounds will take care of the jurymen. \'It isn\'t directed at all,\' said the King: \'leave out that one of the Queen\'s ears--\' the Rabbit came near her, about four inches deep and reaching half down the little golden key in the kitchen that did not dare to laugh; and.<\\/p><h3>Caterpillar. \'Well, perhaps.<\\/h3><p>I\'ll have you got in your knocking,\' the Footman remarked, \'till tomorrow--\' At this moment Five, who had been looking at it again: but he now hastily began again, using the ink, that was linked into hers began to repeat it, but her head made her feel very queer indeed:-- \'\'Tis the voice of the Lizard\'s slate-pencil, and the Dormouse into the garden. Then she went out, but it makes me grow large again, for this curious child was very provoking to find that she had not long to doubt, for the.<\\/p><h2>King said, turning to Alice.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\" alt=\\\"news-19-600x421.jpg\\\"><\\/p><p>I suppose?\' \'Yes,\' said Alice, timidly; \'some of the month, and doesn\'t tell what o\'clock it is!\' \'Why should it?\' muttered the Hatter. \'Does YOUR watch tell you just now what the flame of a candle is like after the birds! Why, she\'ll eat a bat?\' when suddenly, thump! thump! down she came upon a time she heard something like this:-- \'Fury said to one of the way--\' \'THAT generally takes some time,\' interrupted the Gryphon. \'Then, you know,\' the Hatter continued, \'in this way:-- \\\"Up above the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"19\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-18.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, 'Unlock The Secrets Of Selling High Ticket Items', 'primary', '2025-07-30 14:31:45', '2025-07-30 14:31:45');
INSERT INTO `audit_histories` VALUES (167, 1, 'post', '{\"name\":\"The church\'s mission and ambitions\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-churchs-mission-and-ambitions\",\"slug_id\":\"32\",\"is_slug_editable\":\"1\",\"description\":\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\",\"is_featured\":\"1\",\"content\":\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\" alt=\\\"news-4-600x421.jpg\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\" alt=\\\"news-19-600x421.jpg\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"1\",\"layout\":\"top-full\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"0\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'The church\'s mission and ambitions', 'primary', '2025-07-30 14:47:49', '2025-07-30 14:47:49');
INSERT INTO `audit_histories` VALUES (168, 1, 'post', '{\"name\":\".\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-churchs-mission-and-ambitions\",\"slug_id\":\"32\",\"is_slug_editable\":\"1\",\"description\":\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\",\"is_featured\":\"1\",\"content\":\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\" alt=\\\"news-4-600x421.jpg\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\" alt=\\\"news-19-600x421.jpg\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"1\",\"layout\":\"top-full\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, '.', 'primary', '2025-07-30 14:48:33', '2025-07-30 14:48:33');
INSERT INTO `audit_histories` VALUES (169, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><p>&nbsp;<\\/p>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-30 14:52:02', '2025-07-30 14:52:02');
INSERT INTO `audit_histories` VALUES (170, 1, 'post', '{\"name\":\"A Christian presence in your community\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"not-a-bit-of-hesitation-you-better-think-twice\",\"slug_id\":\"33\",\"is_slug_editable\":\"1\",\"description\":\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\",\"is_featured\":\"1\",\"content\":\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\" alt=\\\"news-5-600x421.jpg\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\" alt=\\\"news-17-600x421.jpg\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":\"inline\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-3.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'A Christian presence in your community', 'primary', '2025-07-30 15:03:35', '2025-07-30 15:03:35');
INSERT INTO `audit_histories` VALUES (171, 1, 'post', '{\"name\":\"A Christian presence in your community\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"a-christian-presence-in-your-community\",\"slug_id\":\"33\",\"is_slug_editable\":\"1\",\"description\":\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\",\"is_featured\":\"1\",\"content\":\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\" alt=\\\"news-5-600x421.jpg\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\" alt=\\\"news-17-600x421.jpg\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":\"inline\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"news\\/news-3.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'A Christian presence in your community', 'primary', '2025-07-30 15:03:53', '2025-07-30 15:03:53');
INSERT INTO `audit_histories` VALUES (172, 1, 'post', '{\"name\":\"A Christian presence in your community\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"a-christian-presence-in-your-community\",\"slug_id\":\"33\",\"is_slug_editable\":\"1\",\"description\":\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\",\"is_featured\":\"1\",\"content\":\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\" alt=\\\"news-5-600x421.jpg\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\" alt=\\\"news-17-600x421.jpg\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":\"inline\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"windrush-service-at-manchester-cathedral2.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'A Christian presence in your community', 'primary', '2025-07-30 15:05:08', '2025-07-30 15:05:08');
INSERT INTO `audit_histories` VALUES (173, 1, 'post', '{\"name\":\"A Christian presence in your community\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"a-christian-presence-in-your-community\",\"slug_id\":\"33\",\"is_slug_editable\":\"1\",\"description\":\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\",\"is_featured\":\"1\",\"content\":\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\" alt=\\\"news-5-600x421.jpg\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\" alt=\\\"news-17-600x421.jpg\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":null,\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":\"inline\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"windrush-service-at-manchester-cathedral2.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'A Christian presence in your community', 'primary', '2025-07-30 15:10:53', '2025-07-30 15:10:53');
INSERT INTO `audit_histories` VALUES (174, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-07-30 15:14:01', '2025-07-30 15:14:01');
INSERT INTO `audit_histories` VALUES (175, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-07-30 15:14:01', '2025-07-30 15:14:01');
INSERT INTO `audit_histories` VALUES (176, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-07-30 15:14:01', '2025-07-30 15:14:01');
INSERT INTO `audit_histories` VALUES (177, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'About Us', 'primary', '2025-07-30 15:14:01', '2025-07-30 15:14:01');
INSERT INTO `audit_histories` VALUES (178, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'About the Church', 'primary', '2025-07-30 15:14:01', '2025-07-30 15:14:01');
INSERT INTO `audit_histories` VALUES (179, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Our Mission', 'primary', '2025-07-30 15:14:01', '2025-07-30 15:14:01');
INSERT INTO `audit_histories` VALUES (180, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Metro', 'primary', '2025-07-30 15:14:01', '2025-07-30 15:14:01');
INSERT INTO `audit_histories` VALUES (181, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Events', 'primary', '2025-07-30 15:14:01', '2025-07-30 15:14:01');
INSERT INTO `audit_histories` VALUES (182, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Guilds & Associations', 'primary', '2025-07-30 15:14:02', '2025-07-30 15:14:02');
INSERT INTO `audit_histories` VALUES (183, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Choir', 'primary', '2025-07-30 15:14:02', '2025-07-30 15:14:02');
INSERT INTO `audit_histories` VALUES (184, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Full top', 'primary', '2025-07-30 15:14:02', '2025-07-30 15:14:02');
INSERT INTO `audit_histories` VALUES (185, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Cookie Policy', 'primary', '2025-07-30 15:14:02', '2025-07-30 15:14:02');
INSERT INTO `audit_histories` VALUES (186, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Inline', 'primary', '2025-07-30 15:14:02', '2025-07-30 15:14:02');
INSERT INTO `audit_histories` VALUES (187, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"16 18 19 20\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"About Us\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"About the Church\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Category List\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"list\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"no-breadcrumbs\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":5,\\\"key\\\":\\\"category-list\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Our Mission\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Category grid\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"grid\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":6,\\\"key\\\":\\\"category-grid\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":6,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/category-metro\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Metro\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"Category metro\\\",\\\"content\\\":\\\"<div>[posts-listing layout=\\\\\\\"metro\\\\\\\"][\\/posts-listing]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":7,\\\"key\\\":\\\"category-metro\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/galleries\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Events\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Guilds & Associations\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Choir\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Welcome to St. John the Evangelist Anglican Church\\\",\\\"description\\\":\\\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\\\",\\\"content\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\\\",\\\"views\\\":1805,\\\"format_type\\\":\\\"video\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:20:57.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":31,\\\"key\\\":\\\"1753884137\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/the-world-caters-to-average-people-and-mediocre-lifestyles\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Full top\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\".\\\",\\\"description\\\":\\\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\\\",\\\"content\\\":\\\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\\\\\" alt=\\\\\\\"news-4-600x421.jpg\\\\\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\\\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\\\\\" alt=\\\\\\\"news-19-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\\\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\\\",\\\"views\\\":1467,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T14:48:32.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":32,\\\"key\\\":\\\"the-churchs-mission-and-ambitions\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":10,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/cookie-policy\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Cookie Policy\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":10,\\\"name\\\":\\\"Cookie Policy\\\",\\\"content\\\":\\\"<h3>EU Cookie Consent<\\/h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.<\\/p><h4>Essential Data<\\/h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.<\\/p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.<\\/p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \\\\\\\"token\\\\\\\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.<\\/p>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":10,\\\"key\\\":\\\"cookie-policy\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":10,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":10,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"url\\\":\\\"\\/en\\/not-a-bit-of-hesitation-you-better-think-twice\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Inline\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"A Christian presence in your community\\\",\\\"description\\\":\\\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\\\",\\\"content\\\":\\\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\\\\\" alt=\\\\\\\"news-5-600x421.jpg\\\\\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\\\\\" alt=\\\\\\\"news-8-600x421.jpg\\\\\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\\\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\\\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\\\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\\\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\\\\\"text-center\\\\\\\"><img src=\\\\\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\\\\\" alt=\\\\\\\"news-17-600x421.jpg\\\\\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\\\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"author_id\\\":1,\\\"author_type\\\":\\\"Botble\\\\\\\\Member\\\\\\\\Models\\\\\\\\Member\\\",\\\"is_featured\\\":1,\\\"image\\\":\\\"windrush-service-at-manchester-cathedral2.jpg\\\",\\\"views\\\":140,\\\"format_type\\\":\\\"default\\\",\\\"created_at\\\":\\\"2024-12-28T00:00:00.000000Z\\\",\\\"updated_at\\\":\\\"2025-07-30T15:10:52.000000Z\\\",\\\"published_at\\\":null,\\\"slugable\\\":{\\\"id\\\":33,\\\"key\\\":\\\"a-christian-presence-in-your-community\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Blog\\\\\\\\Models\\\\\\\\Post\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}}]},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":8,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/en\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":8,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"<div>[contact-form title=\\\\\\\"Get in Touch\\\\\\\"][\\/contact-form]<\\/div><h3>Directions<\\/h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[\\/google-map]<\\/div>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"default\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"updated_at\\\":\\\"2024-12-28T04:21:13.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":8,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":8,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/galleries\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Contact', 'primary', '2025-07-30 15:14:02', '2025-07-30 15:14:02');
INSERT INTO `audit_histories` VALUES (188, 1, 'post', '{\"name\":\"A Christian presence in your community\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"a-christian-presence-in-your-community\",\"slug_id\":\"33\",\"is_slug_editable\":\"1\",\"description\":\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\",\"is_featured\":\"1\",\"content\":\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\" alt=\\\"news-5-600x421.jpg\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\" alt=\\\"news-17-600x421.jpg\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":\"inline\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"windrush-service-at-manchester-cathedral2.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"0\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'A Christian presence in your community', 'primary', '2025-07-30 15:16:27', '2025-07-30 15:16:27');
INSERT INTO `audit_histories` VALUES (189, 1, 'post', '{\"name\":\"A Christian presence in your community\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"a-christian-presence-in-your-community\",\"slug_id\":\"33\",\"is_slug_editable\":\"1\",\"description\":\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\",\"is_featured\":\"1\",\"content\":\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\" alt=\\\"news-5-600x421.jpg\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\" alt=\\\"news-17-600x421.jpg\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":\"inline\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"windrush-service-at-manchester-cathedral2.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"0\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'A Christian presence in your community', 'primary', '2025-07-30 15:17:30', '2025-07-30 15:17:30');
INSERT INTO `audit_histories` VALUES (190, 1, 'post', '{\"name\":\"A Christian presence in your community\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"a-christian-presence-in-your-community\",\"slug_id\":\"33\",\"is_slug_editable\":\"1\",\"description\":\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\",\"is_featured\":\"1\",\"content\":\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\" alt=\\\"news-5-600x421.jpg\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\" alt=\\\"news-17-600x421.jpg\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":\"inline\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"windrush-service-at-manchester-cathedral2.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"0\",\"show_toc_in_content\":\"no\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'A Christian presence in your community', 'primary', '2025-07-30 15:17:49', '2025-07-30 15:17:49');
INSERT INTO `audit_histories` VALUES (191, 1, 'post', '{\"name\":\"The Youth\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-youth\",\"slug_id\":\"50\",\"is_slug_editable\":\"1\",\"description\":\"Vel deserunt dolore non error odio molestiae hic eum. Placeat exercitationem ut sint nam quas aut. Ut quaerat suscipit dolore est. Sit rerum illum eaque eveniet non sunt.\",\"is_featured\":\"1\",\"content\":\"<h2>Dormouse,\' the Queen to play.<\\/h2><p>She ate a little way out of it, and finding it very much,\' said Alice, \'because I\'m not the smallest notice of her voice. Nobody moved. \'Who cares for you?\' said the Dormouse, not choosing to notice this question, but hurriedly went on, \'What HAVE you been doing here?\' \'May it please your Majesty,\' said the Caterpillar seemed to quiver all over crumbs.\' \'You\'re wrong about the reason so many different sizes in a pleased tone. \'Pray don\'t trouble yourself to say it out to sea!\\\" But the insolence of his teacup instead of the jurors had a pencil that squeaked. This of course, Alice could only see her. She is such a very little! Besides, SHE\'S she, and I\'m sure I don\'t want YOU with us!\\\"\' \'They were obliged to say \'Drink me,\' but the Hatter asked triumphantly. Alice did not notice this question, but hurriedly went on, turning to the Classics master, though. He was looking down at her rather inquisitively, and seemed not to be in Bill\'s place for a conversation. \'You don\'t know much,\'.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-7-600x421.jpg\\\" alt=\\\"news-7-600x421.jpg\\\"><\\/p><p>VERY wide, but she knew that it had made. \'He took me for asking! No, it\'ll never do to hold it. As soon as she did it at all; and I\'m sure I don\'t think,\' Alice went on, \'I must be growing small again.\' She got up in such long ringlets, and mine doesn\'t go in at the stick, and tumbled head over heels in its hurry to change them--\' when she noticed that the hedgehog a blow with its eyelids, so he with his tea spoon at the cook, to see what would happen next. First, she tried to say it out to.<\\/p><h2>Hatter. \'Stolen!\' the King.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-10-600x421.jpg\\\" alt=\\\"news-10-600x421.jpg\\\"><\\/p><p>Turtle.\' These words were followed by a row of lamps hanging from the time they had a VERY unpleasant state of mind, she turned away. \'Come back!\' the Caterpillar took the regular course.\' \'What was that?\' inquired Alice. \'Reeling and Writhing, of course, to begin with,\' the Mock Turtle sighed deeply, and began, in a low voice, to the door, and knocked. \'There\'s no such thing!\' Alice was beginning very angrily, but the Mouse replied rather crossly: \'of course you know I\'m mad?\' said Alice. \'That\'s the first minute or two, looking for them, and all the things being alive; for instance, there\'s the arch I\'ve got to the puppy; whereupon the puppy jumped into the garden with one finger, as he shook both his shoes on. \'--and just take his head contemptuously. \'I dare say you never tasted an egg!\' \'I HAVE tasted eggs, certainly,\' said Alice, swallowing down her anger as well as she went on again:-- \'I didn\'t write it, and they can\'t prove I did: there\'s no harm in trying.\' So she set off.<\\/p><h2>Mock Turtle. So she tucked.<\\/h2><h3>Mock Turtle drew a long time.<\\/h3><p>I\'m afraid, sir\' said Alice, a good deal until she had to stop and untwist it. After a minute or two, they began running about in the middle, being held up by a very little! Besides, SHE\'S she, and I\'m sure I don\'t remember where.\' \'Well, it must be getting home; the night-air doesn\'t suit my throat!\' and a sad tale!\' said the Caterpillar took the hookah out of a treacle-well--eh, stupid?\' \'But they were filled with cupboards and book-shelves; here and there. There was a large dish of tarts.<\\/p><h3>Alice in a bit.\' \'Perhaps it.<\\/h3><p>They are waiting on the breeze that followed them, the melancholy words:-- \'Soo--oop of the party sat silent and looked at Two. Two began in a melancholy tone. \'Nobody seems to like her, down here, that I should say \\\"With what porpoise?\\\"\' \'Don\'t you mean \\\"purpose\\\"?\' said Alice. \'What IS the use of this ointment--one shilling the box-- Allow me to him: She gave me a pair of the March Hare. Alice was only sobbing,\' she thought, \'and hand round the neck of the jurors had a vague sort of meaning.<\\/p><h3>March--just before HE went.<\\/h3><p>Number One,\' said Alice. \'Exactly so,\' said Alice. \'I\'m a--I\'m a--\' \'Well! WHAT are you?\' And then a row of lamps hanging from the sky! Ugh, Serpent!\' \'But I\'m not used to say \\\"HOW DOTH THE LITTLE BUSY BEE,\\\" but it makes me grow smaller, I can remember feeling a little bit of mushroom, and crawled away in the middle of one! There ought to have no notion how delightful it will be When they take us up and saying, \'Thank you, it\'s a French mouse, come over with diamonds, and walked two and two.<\\/p><h3>Alice, looking down with her.<\\/h3><p>Alice. \'I\'ve read that in some book, but I think I must go by the prisoner to--to somebody.\' \'It must have prizes.\' \'But who is to find that her shoulders were nowhere to be a letter, after all: it\'s a French mouse, come over with fright. \'Oh, I know!\' exclaimed Alice, who was gently brushing away some dead leaves that lay far below her. \'What CAN all that stuff,\' the Mock Turtle. So she set the little dears came jumping merrily along hand in her haste, she had forgotten the Duchess to play.<\\/p><h2>I haven\'t been invited yet.\'.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-15-600x421.jpg\\\" alt=\\\"news-15-600x421.jpg\\\"><\\/p><p>Gryphon. \'It all came different!\' Alice replied eagerly, for she had not gone much farther before she gave her one, they gave him two, You gave us three or more; They all sat down again into its face to see what the name of the sea.\' \'I couldn\'t help it,\' said Alice, quite forgetting in the same size: to be otherwise.\\\"\' \'I think you can have no idea how to begin.\' For, you see, as they were getting so thin--and the twinkling of the court,\\\" and I shall never get to the table, but it was too.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"15\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"istockphoto-1191647689-612x612.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'The Youth', 'primary', '2025-07-30 15:52:09', '2025-07-30 15:52:09');
INSERT INTO `audit_histories` VALUES (192, 1, 'post', '{\"name\":\"4 Expert Tips On How To Choose The Right Men\\u2019s Wallet\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"4-expert-tips-on-how-to-choose-the-right-mens-wallet\",\"slug_id\":\"49\",\"is_slug_editable\":\"1\",\"description\":\"At et iure consequuntur rem explicabo unde. Hic necessitatibus inventore rerum debitis autem. Quos quis repellat omnis earum blanditiis repellendus.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"18\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"whatsapp-image-2025-07-09-at-100144.jpeg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, '4 Expert Tips On How To Choose The Right Men’s Wallet', 'primary', '2025-07-30 15:54:13', '2025-07-30 15:54:13');
INSERT INTO `audit_histories` VALUES (193, 1, 'post', '{\"name\":\"Apple iMac with Retina 5K display review\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"apple-imac-with-retina-5k-display-review\",\"slug_id\":\"46\",\"is_slug_editable\":\"1\",\"description\":\"Vitae dolores sed aliquid. Delectus ipsa fuga et voluptas. Dolor temporibus sunt laborum dolor suscipit. Delectus mollitia amet nihil quia odit et. Aliquid mollitia vero molestias ut aut voluptatem.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"2\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"whatsapp-image-2025-07-09-at-100144.jpeg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Apple iMac with Retina 5K display review', 'primary', '2025-07-30 15:55:26', '2025-07-30 15:55:26');
INSERT INTO `audit_histories` VALUES (194, 1, 'post', '{\"name\":\"Apple iMac with Retina 5K display review\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"apple-imac-with-retina-5k-display-review\",\"slug_id\":\"46\",\"is_slug_editable\":\"1\",\"description\":\"Vitae dolores sed aliquid. Delectus ipsa fuga et voluptas. Dolor temporibus sunt laborum dolor suscipit. Delectus mollitia amet nihil quia odit et. Aliquid mollitia vero molestias ut aut voluptatem.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"2\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":null,\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Apple iMac with Retina 5K display review', 'primary', '2025-07-30 15:56:28', '2025-07-30 15:56:28');
INSERT INTO `audit_histories` VALUES (195, 1, 'post', '{\"name\":\"Apple iMac with Retina 5K display review\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"apple-imac-with-retina-5k-display-review\",\"slug_id\":\"46\",\"is_slug_editable\":\"1\",\"description\":\"Vitae dolores sed aliquid. Delectus ipsa fuga et voluptas. Dolor temporibus sunt laborum dolor suscipit. Delectus mollitia amet nihil quia odit et. Aliquid mollitia vero molestias ut aut voluptatem.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"2\",\"layout\":\"top-full\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":null,\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"comment_status\":\"1\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Apple iMac with Retina 5K display review', 'primary', '2025-07-30 15:59:07', '2025-07-30 15:59:07');
INSERT INTO `audit_histories` VALUES (196, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 48, 'ID: 48', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (197, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 47, 'ID: 47', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (198, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 46, 'ID: 46', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (199, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 45, 'ID: 45', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (200, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 44, 'ID: 44', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (201, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 43, 'ID: 43', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (202, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 42, 'ID: 42', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (203, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 41, 'ID: 41', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (204, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 40, 'ID: 40', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (205, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 39, 'ID: 39', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (206, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 38, 'ID: 38', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (207, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 37, 'ID: 37', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (208, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 36, 'ID: 36', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (209, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 35, 'ID: 35', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (210, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 34, 'ID: 34', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (211, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 33, 'ID: 33', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (212, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 32, 'ID: 32', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (213, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 31, 'ID: 31', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (214, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 30, 'ID: 30', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (215, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 29, 'ID: 29', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (216, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 28, 'ID: 28', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (217, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 27, 'ID: 27', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (218, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 26, 'ID: 26', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (219, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 25, 'ID: 25', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (220, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 24, 'ID: 24', 'danger', '2025-07-30 16:00:14', '2025-07-30 16:00:14');
INSERT INTO `audit_histories` VALUES (221, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 23, 'ID: 23', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (222, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 22, 'ID: 22', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (223, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 21, 'ID: 21', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (224, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'ID: 20', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (225, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'ID: 19', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (226, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, 'ID: 18', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (227, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'ID: 17', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (228, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'ID: 16', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (229, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'ID: 15', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (230, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'ID: 14', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (231, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'ID: 13', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (232, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'ID: 12', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (233, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'ID: 11', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (234, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'ID: 10', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (235, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'ID: 9', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (236, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'ID: 8', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (237, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'ID: 7', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (238, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'ID: 6', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (239, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'ID: 5', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (240, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'ID: 4', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (241, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'ID: 3', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (242, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'ID: 2', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (243, 1, 'comment', '{\"_method\":\"delete\",\"ids\":[\"48\",\"47\",\"46\",\"45\",\"44\",\"43\",\"42\",\"41\",\"40\",\"39\",\"38\",\"37\",\"36\",\"35\",\"34\",\"33\",\"32\",\"31\",\"30\",\"29\",\"28\",\"27\",\"26\",\"25\",\"24\",\"23\",\"22\",\"21\",\"20\",\"19\",\"18\",\"17\",\"16\",\"15\",\"14\",\"13\",\"12\",\"11\",\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Comment\\\\Tables\\\\CommentTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'danger', '2025-07-30 16:00:15', '2025-07-30 16:00:15');
INSERT INTO `audit_histories` VALUES (244, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"1753884137\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":null,\"categories\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],\"image\":\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-07-30 16:35:09', '2025-07-30 16:35:09');
INSERT INTO `audit_histories` VALUES (245, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-07-31 07:51:56', '2025-07-31 07:51:56');
INSERT INTO `audit_histories` VALUES (246, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-07-31 10:51:24', '2025-07-31 10:51:24');
INSERT INTO `audit_histories` VALUES (247, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-07-31 10:51:37', '2025-07-31 10:51:37');
INSERT INTO `audit_histories` VALUES (248, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><p>[&lt;div class=\\\"container\\\"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;h3 class=\\\"title_category\\\"&gt;St. John Anglican Church of Ghana, Odorkor&lt;\\/h3&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;div class=\\\"content_wrap\\\"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;div class=\\\"content_img\\\"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;img decoding=\\\"async\\\" src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%\\\"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;\\/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;div class=\\\"content_info\\\"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;div class=\\\"content_description\\\"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;h3 class=\\\"title_section\\\"&gt;Rev. Can. Col. Ian Adjetey Adjei (Rtd)&lt;\\/h3&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;h5 class=\\\"title_category\\\"&gt;Parish Priest&lt;\\/h5&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;div class=\\\"typical_text\\\"&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;p&gt;Beloved in Christ,&lt;br&gt;<\\/p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.&lt;br&gt;&lt;br&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.&lt;br&gt;&lt;br&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Remain blessed in His unfailing grace.&lt;\\/p&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;\\/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;\\/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;\\/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;\\/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp;&lt;\\/div&gt;]<\\/p><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><p>&nbsp;<\\/p>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 10:55:17', '2025-07-31 10:55:17');
INSERT INTO `audit_histories` VALUES (249, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><pre><code class=\\\"language-plaintext\\\">&lt;div class=\\\"container\\\"&gt;\\r\\n             \\r\\n            &lt;h3 class=\\\"title_category\\\"&gt;St. John Anglican Church of Ghana, Odorkor&lt;\\/h3&gt;\\r\\n                        &lt;div class=\\\"content_wrap\\\"&gt;\\r\\n                                &lt;div class=\\\"content_img\\\"&gt;\\r\\n                                        &lt;img decoding=\\\"async\\\" src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%\\\"&gt;\\r\\n                                    &lt;\\/div&gt;\\r\\n                                &lt;div class=\\\"content_info\\\"&gt;\\r\\n                    &lt;div class=\\\"content_description\\\"&gt;\\r\\n                                                &lt;h3 class=\\\"title_section\\\"&gt;Rev. Can. Col. Ian Adjetey Adjei (Rtd)&lt;\\/h3&gt;\\r\\n                                                &lt;h5 class=\\\"title_category\\\"&gt;Parish Priest&lt;\\/h5&gt;\\r\\n                                                &lt;div class=\\\"typical_text\\\"&gt;\\r\\n                            &lt;p&gt;Beloved in Christ,&lt;br&gt;\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.&lt;br&gt;&lt;br&gt;\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.&lt;br&gt;&lt;br&gt;\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.&lt;\\/p&gt;\\r\\n                        &lt;\\/div&gt;\\r\\n                                            &lt;\\/div&gt;\\r\\n                &lt;\\/div&gt;\\r\\n            &lt;\\/div&gt;\\r\\n        &lt;\\/div&gt;<\\/code><\\/pre><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><p>&nbsp;<\\/p>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 10:57:00', '2025-07-31 10:57:00');
INSERT INTO `audit_histories` VALUES (250, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><pre><code class=\\\"language-plaintext\\\">&lt;div class=\\\"container\\\"&gt;\\r\\n             \\r\\n            &lt;h3 class=\\\"title_category\\\"&gt;St. John Anglican Church of Ghana, Odorkor&lt;\\/h3&gt;\\r\\n                        &lt;div class=\\\"content_wrap\\\"&gt;\\r\\n                                &lt;div class=\\\"content_img\\\"&gt;\\r\\n                                        &lt;img decoding=\\\"async\\\" src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%\\\"&gt;\\r\\n                                    &lt;\\/div&gt;\\r\\n                                &lt;div class=\\\"content_info\\\"&gt;\\r\\n                    &lt;div class=\\\"content_description\\\"&gt;\\r\\n                                                &lt;h3 class=\\\"title_section\\\"&gt;Rev. Can. Col. Ian Adjetey Adjei (Rtd)&lt;\\/h3&gt;\\r\\n                                                &lt;h5 class=\\\"title_category\\\"&gt;Parish Priest&lt;\\/h5&gt;\\r\\n                                                &lt;div class=\\\"typical_text\\\"&gt;\\r\\n                            &lt;p&gt;Beloved in Christ,&lt;br&gt;\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.&lt;br&gt;&lt;br&gt;\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.&lt;br&gt;&lt;br&gt;\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.&lt;\\/p&gt;\\r\\n                        &lt;\\/div&gt;\\r\\n                                            &lt;\\/div&gt;\\r\\n                &lt;\\/div&gt;\\r\\n            &lt;\\/div&gt;\\r\\n        &lt;\\/div&gt;<\\/code><\\/pre><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><p>&nbsp;<\\/p>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 10:57:57', '2025-07-31 10:57:57');
INSERT INTO `audit_histories` VALUES (251, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><pre><code class=\\\"language-html language-plaintext\\\">&lt;div class=\\\"container\\\"&gt;\\r\\n             \\r\\n            &lt;h3 class=\\\"title_category\\\"&gt;St. John Anglican Church of Ghana, Odorkor&lt;\\/h3&gt;\\r\\n                        &lt;div class=\\\"content_wrap\\\"&gt;\\r\\n                                &lt;div class=\\\"content_img\\\"&gt;\\r\\n                                        &lt;img decoding=\\\"async\\\" src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%\\\"&gt;\\r\\n                                    &lt;\\/div&gt;\\r\\n                                &lt;div class=\\\"content_info\\\"&gt;\\r\\n                    &lt;div class=\\\"content_description\\\"&gt;\\r\\n                                                &lt;h3 class=\\\"title_section\\\"&gt;Rev. Can. Col. Ian Adjetey Adjei (Rtd)&lt;\\/h3&gt;\\r\\n                                                &lt;h5 class=\\\"title_category\\\"&gt;Parish Priest&lt;\\/h5&gt;\\r\\n                                                &lt;div class=\\\"typical_text\\\"&gt;\\r\\n                            &lt;p&gt;Beloved in Christ,&lt;br&gt;\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.&lt;br&gt;&lt;br&gt;\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.&lt;br&gt;&lt;br&gt;\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.&lt;\\/p&gt;\\r\\n                        &lt;\\/div&gt;\\r\\n                                            &lt;\\/div&gt;\\r\\n                &lt;\\/div&gt;\\r\\n            &lt;\\/div&gt;\\r\\n        &lt;\\/div&gt;<\\/code><\\/pre><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><p>&nbsp;<\\/p>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 10:58:52', '2025-07-31 10:58:52');
INSERT INTO `audit_histories` VALUES (252, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><pre><code class=\\\"language-html language-plaintext\\\">&nbsp;<\\/code><\\/pre><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><p>&nbsp;<\\/p>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 11:01:03', '2025-07-31 11:01:03');
INSERT INTO `audit_histories` VALUES (253, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":null,\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 11:02:55', '2025-07-31 11:02:55');
INSERT INTO `audit_histories` VALUES (254, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 11:20:49', '2025-07-31 11:20:49');
INSERT INTO `audit_histories` VALUES (255, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img decoding=\\\"async\\\" src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div><\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 11:29:44', '2025-07-31 11:29:44');
INSERT INTO `audit_histories` VALUES (256, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div><\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-07-31 11:32:10', '2025-07-31 11:32:10');
INSERT INTO `audit_histories` VALUES (257, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-03 14:35:48', '2025-08-03 14:35:48');
INSERT INTO `audit_histories` VALUES (258, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div><\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-08-03 14:47:50', '2025-08-03 14:47:50');
INSERT INTO `audit_histories` VALUES (259, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div>\\r\\n\\r\\n<div class=\\\"container1\\\">\\r\\n                        <div class=\\\"content_wrap reverse\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                            <!-- <video autoplay muted playsinline loop>\\r\\n                            <source src=\\\"wp-content\\/uploads\\/2023\\/10\\/Feature-2-Tolerisk-Pro.mp4\\\" type=\\\"video\\/mp4\\\">\\r\\n                        <\\/video> -->\\r\\n                        <img decoding=\\\"async\\\" src=\\\"wp-content\\/uploads\\/WhatsApp Image 2025-06-25 at 12.26.37.jpeg\\\" alt=\\\"\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">About Us<\\/h3>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>The Anglican Church of Ghana, Odorkor, is a vibrant community of faith rooted in worship, prayer, and service. As part of the worldwide Anglican Communion, we are committed to spreading the love of Christ through the sacraments, sound teaching, and outreach to our community.\\r\\n                                We welcome people from all walks of life to join us in glorifying God and growing together in faith and fellowship.<\\/p>\\r\\n                        <\\/div>\\r\\n                        <style>\\r\\n                            .read-more-btn {\\r\\n                                display: inline-block;\\r\\n                                padding: 12px 30px;\\r\\n                                background-color: #022940;\\r\\n                                color: white;\\r\\n                                text-decoration: none;\\r\\n                                border-radius: 5px;\\r\\n                                font-weight: 500;\\r\\n                                margin-top: 20px;\\r\\n                                transition: all 0.3s ease;\\r\\n                                border: 2px solid #022940;\\r\\n                            }\\r\\n                            \\r\\n                            .read-more-btn:hover {\\r\\n                                background-color: transparent;\\r\\n                                color: #022940;\\r\\n                                transform: translateY(-3px);\\r\\n                                box-shadow: 0 5px 15px rgba(2, 41, 64, 0.2);\\r\\n                            }\\r\\n\\r\\n                            .typical_text ul {\\r\\n                                    list-style: none;\\r\\n                                    padding-left: 0;\\r\\n                                }\\r\\n\\r\\n                                .typical_text ul li {\\r\\n                                    position: relative;\\r\\n                                    padding-left: 30px;\\r\\n                                    margin-bottom: 10px;\\r\\n                                }\\r\\n\\r\\n                                .typical_text ul li:before {\\r\\n                                    content: \'\\u2713\';\\r\\n                                    position: absolute;\\r\\n                                    left: 0;\\r\\n                                    width: 20px;\\r\\n                                    height: 20px;\\r\\n                                    background-color: #022940;\\r\\n                                    color: white;\\r\\n                                    border-radius: 50%;\\r\\n                                    display: flex;\\r\\n                                    align-items: center;\\r\\n                                    justify-content: center;\\r\\n                                    font-size: 12px;\\r\\n                                }\\r\\n                        <\\/style>\\r\\n                        <a href=\\\"#\\\" class=\\\"read-more-btn\\\">Read More<\\/a>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div><\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[most-comments title=\\\"Most comments\\\" limit=\\\"8\\\" subtitle=\\\"M\\\"][\\/most-comments]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-08-03 14:49:15', '2025-08-03 14:49:15');
INSERT INTO `audit_histories` VALUES (260, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div>\\r\\n\\r\\n<div class=\\\"container1\\\">\\r\\n                        <div class=\\\"content_wrap reverse\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                            \\r\\n                        <img src=\\\"wp-content\\/uploads\\/WhatsApp%20Image%202025-06-25%20at%2012.26.37.jpeg\\\" alt=\\\"\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">About Us<\\/h3>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>The Anglican Church of Ghana, Odorkor, is a vibrant community of faith rooted in worship, prayer, and service. As part of the worldwide Anglican Communion, we are committed to spreading the love of Christ through the sacraments, sound teaching, and outreach to our community.\\r\\n                                We welcome people from all walks of life to join us in glorifying God and growing together in faith and fellowship.<\\/p>\\r\\n                        <\\/div>\\r\\n                        \\r\\n                        <a href=\\\"#\\\" class=\\\"read-more-btn\\\">Read More<\\/a>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div><\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-08-03 14:51:06', '2025-08-03 14:51:06');
INSERT INTO `audit_histories` VALUES (261, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div>\\r\\n\\r\\n<div class=\\\"container1\\\">\\r\\n                        <div class=\\\"content_wrap reverse\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                            \\r\\n                        <img src=\\\"wp-content\\/uploads\\/WhatsApp%20Image%202025-06-25%20at%2012.26.37.jpeg\\\" alt=\\\"\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">About Us<\\/h3>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>The Anglican Church of Ghana, Odorkor, is a vibrant community of faith rooted in worship, prayer, and service. As part of the worldwide Anglican Communion, we are committed to spreading the love of Christ through the sacraments, sound teaching, and outreach to our community.\\r\\n                                We welcome people from all walks of life to join us in glorifying God and growing together in faith and fellowship.<\\/p>\\r\\n                        <\\/div>\\r\\n                        \\r\\n                        <a href=\\\"#\\\" class=\\\"read-more-btn\\\">Read More<\\/a>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div><\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-08-03 14:51:41', '2025-08-03 14:51:41');
INSERT INTO `audit_histories` VALUES (262, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div>\\r\\n\\r\\n<div class=\\\"container1\\\">\\r\\n  <div class=\\\"content_wrap reverse\\\"> <!-- This reverses the layout -->\\r\\n    <div class=\\\"content_img\\\">\\r\\n      <img src=\\\"wp-content\\/uploads\\/WhatsApp%20Image%202025-06-25%20at%2012.26.37.jpeg\\\" alt=\\\"\\\">\\r\\n    <\\/div>\\r\\n    <div class=\\\"content_info\\\">\\r\\n      <div class=\\\"content_description\\\">\\r\\n        <h3 class=\\\"title_section\\\">About Us<\\/h3>\\r\\n        <div class=\\\"typical_text\\\">\\r\\n          <p>The Anglican Church of Ghana, Odorkor, is a vibrant community of faith rooted in worship, prayer, and service. ...<\\/p>\\r\\n        <\\/div>\\r\\n        <a href=\\\"#\\\" class=\\\"read-more-btn\\\">Read More<\\/a>\\r\\n      <\\/div>\\r\\n    <\\/div>\\r\\n  <\\/div>\\r\\n<\\/div>\\r\\n<\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-08-03 15:17:37', '2025-08-03 15:17:37');
INSERT INTO `audit_histories` VALUES (263, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"wp-content\\/uploads\\/PASTOR.jpg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div>\\r\\n\\r\\n<div class=\\\"container1\\\">\\r\\n  <div class=\\\"content_wrap reverse\\\"> \\r\\n    <div class=\\\"content_img\\\">\\r\\n      <img src=\\\"wp-content\\/uploads\\/WhatsApp%20Image%202025-06-25%20at%2012.26.37.jpeg\\\" alt=\\\"\\\">\\r\\n    <\\/div>\\r\\n    <div class=\\\"content_info\\\">\\r\\n      <div class=\\\"content_description\\\">\\r\\n        <h3 class=\\\"title_section\\\">About Us<\\/h3>\\r\\n        <div class=\\\"typical_text\\\">\\r\\n          <p>The Anglican Church of Ghana, Odorkor, is a vibrant community of faith rooted in worship, prayer, and service. As part of the worldwide Anglican Communion, we are committed to spreading the love of Christ through the sacraments, sound teaching, and outreach to our community. We welcome people from all walks of life to join us in glorifying God and growing together in faith and fellowship.<\\/p>\\r\\n        <\\/div>\\r\\n        <a href=\\\"#\\\" class=\\\"read-more-btn\\\">Read More<\\/a>\\r\\n      <\\/div>\\r\\n    <\\/div>\\r\\n  <\\/div>\\r\\n<\\/div>\\r\\n<\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-08-03 15:21:55', '2025-08-03 15:21:55');
INSERT INTO `audit_histories` VALUES (264, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"storage\\/whatsapp-image-2025-07-09-at-100144.jpeg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div>\\r\\n\\r\\n<div class=\\\"container1\\\">\\r\\n  <div class=\\\"content_wrap reverse\\\"> \\r\\n    <div class=\\\"content_img\\\">\\r\\n      <img src=\\\"wp-content\\/uploads\\/WhatsApp%20Image%202025-06-25%20at%2012.26.37.jpeg\\\" alt=\\\"\\\">\\r\\n    <\\/div>\\r\\n    <div class=\\\"content_info\\\">\\r\\n      <div class=\\\"content_description\\\">\\r\\n        <h3 class=\\\"title_section\\\">About Us<\\/h3>\\r\\n        <div class=\\\"typical_text\\\">\\r\\n          <p>The Anglican Church of Ghana, Odorkor, is a vibrant community of faith rooted in worship, prayer, and service. As part of the worldwide Anglican Communion, we are committed to spreading the love of Christ through the sacraments, sound teaching, and outreach to our community. We welcome people from all walks of life to join us in glorifying God and growing together in faith and fellowship.<\\/p>\\r\\n        <\\/div>\\r\\n        <a href=\\\"#\\\" class=\\\"read-more-btn\\\">Read More<\\/a>\\r\\n      <\\/div>\\r\\n    <\\/div>\\r\\n  <\\/div>\\r\\n<\\/div>\\r\\n<\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[videos-posts title=\\\"Latest Videos\\\" subtitle=\\\"In motion\\\"][\\/videos-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-08-03 15:25:29', '2025-08-03 15:25:29');
INSERT INTO `audit_histories` VALUES (265, 1, 'page', '{\"name\":\"Home 2\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[posts-slider filter_by=\\\"featured\\\" limit=\\\"6\\\" style=\\\"3\\\"][\\/posts-slider]<\\/shortcode><div class=\\\"raw-html-embed\\\"><div class=\\\"container1\\\">\\r\\n             \\r\\n            <h3 class=\\\"title_category\\\">St. John Anglican Church of Ghana, Odorkor<\\/h3>\\r\\n                        <div class=\\\"content_wrap\\\">\\r\\n                                <div class=\\\"content_img\\\">\\r\\n                                        <img src=\\\"storage\\/whatsapp-image-2025-07-09-at-100144.jpeg\\\" alt=\\\"\\\" style=\\\"width:100%;\\\">\\r\\n                                    <\\/div>\\r\\n                                <div class=\\\"content_info\\\">\\r\\n                    <div class=\\\"content_description\\\">\\r\\n                                                <h3 class=\\\"title_section\\\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)<\\/h3>\\r\\n                                                <h5 class=\\\"title_category\\\">Parish Priest<\\/h5>\\r\\n                                                <div class=\\\"typical_text\\\">\\r\\n                            <p>Beloved in Christ,<br>\\r\\n\\r\\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\\r\\n                            \\r\\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\\r\\n                            \\r\\n                            Remain blessed in His unfailing grace.<\\/p>\\r\\n                        <\\/div>\\r\\n                                            <\\/div>\\r\\n                <\\/div>\\r\\n            <\\/div>\\r\\n        <\\/div>\\r\\n\\r\\n<div class=\\\"container1\\\">\\r\\n  <div class=\\\"content_wrap reverse\\\"> \\r\\n    <div class=\\\"content_img\\\">\\r\\n      <img src=\\\"wp-content\\/uploads\\/WhatsApp%20Image%202025-06-25%20at%2012.26.37.jpeg\\\" alt=\\\"\\\">\\r\\n    <\\/div>\\r\\n    <div class=\\\"content_info\\\">\\r\\n      <div class=\\\"content_description\\\">\\r\\n        <h3 class=\\\"title_section\\\">About Us<\\/h3>\\r\\n        <div class=\\\"typical_text\\\">\\r\\n          <p>The Anglican Church of Ghana, Odorkor, is a vibrant community of faith rooted in worship, prayer, and service. As part of the worldwide Anglican Communion, we are committed to spreading the love of Christ through the sacraments, sound teaching, and outreach to our community. We welcome people from all walks of life to join us in glorifying God and growing together in faith and fellowship.<\\/p>\\r\\n        <\\/div>\\r\\n        <a href=\\\"#\\\" class=\\\"read-more-btn\\\">Read More<\\/a>\\r\\n      <\\/div>\\r\\n    <\\/div>\\r\\n  <\\/div>\\r\\n<\\/div>\\r\\n<\\/div><shortcode>[categories-tab-posts title=\\\"Popular\\\" subtitle=\\\"P\\\" limit=\\\"5\\\" categories_ids=\\\"1,2,3,4\\\" show_follow_us_section=\\\"1\\\" ads_location=\\\"top-sidebar-ads\\\"][\\/categories-tab-posts]<\\/shortcode><shortcode>[posts-slider title=\\\"Editor\'s picked\\\" filter_by=\\\"posts-collection\\\" posts_collection_id=\\\"1\\\" limit=6 style=\\\"2\\\" description=\\\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\\\"][\\/posts-slider]<\\/shortcode><shortcode>[recent-posts title=\\\"Recent posts\\\" subtitle=\\\"Latest\\\" limit=\\\"3\\\" background_style=\\\"background-white\\\" show_follow_us_section=\\\"1\\\" tab_post_limit=\\\"4\\\" ads_location=\\\"bottom-sidebar-ads\\\"][\\/recent-posts]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage2\",\"image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Home 2', 'primary', '2025-08-03 15:27:17', '2025-08-03 15:27:17');
INSERT INTO `audit_histories` VALUES (266, 1, 'category', '{\"order\":\"0\",\"name\":\"Choir\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Category\",\"slug\":\"choir\",\"slug_id\":\"17\",\"is_slug_editable\":\"1\",\"parent_id\":\"0\",\"description\":null,\"is_default\":\"0\",\"is_featured\":\"0\",\"status\":\"published\",\"image\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"icon\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Choir', 'primary', '2025-08-03 15:29:48', '2025-08-03 15:29:48');
INSERT INTO `audit_histories` VALUES (267, 1, 'category', '{\"order\":\"0\",\"name\":\"Guilds\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Category\",\"slug\":\"guilds\",\"slug_id\":\"17\",\"is_slug_editable\":\"1\",\"parent_id\":\"0\",\"description\":null,\"is_default\":\"0\",\"is_featured\":\"0\",\"status\":\"published\",\"image\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"icon\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Guilds', 'primary', '2025-08-03 15:30:58', '2025-08-03 15:30:58');
INSERT INTO `audit_histories` VALUES (268, 1, 'category', '{\"order\":\"2\",\"name\":\"Events\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Category\",\"slug\":\"events\",\"slug_id\":\"19\",\"is_slug_editable\":\"1\",\"parent_id\":\"0\",\"description\":null,\"is_default\":\"0\",\"is_featured\":\"0\",\"status\":\"published\",\"image\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"icon\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Events', 'primary', '2025-08-03 15:31:36', '2025-08-03 15:31:36');
INSERT INTO `audit_histories` VALUES (269, 1, 'category', '{\"order\":\"3\",\"name\":\"Announcements\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Category\",\"slug\":\"announcements\",\"slug_id\":\"20\",\"is_slug_editable\":\"1\",\"parent_id\":\"0\",\"description\":null,\"is_default\":\"0\",\"is_featured\":\"0\",\"status\":\"published\",\"image\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"icon\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Announcements', 'primary', '2025-08-03 15:32:12', '2025-08-03 15:32:12');
INSERT INTO `audit_histories` VALUES (270, 1, 'category', '{\"order\":\"4\",\"name\":\"Fashion\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Category\",\"slug\":\"fashion\",\"slug_id\":\"21\",\"is_slug_editable\":\"1\",\"parent_id\":\"0\",\"description\":null,\"is_default\":\"0\",\"is_featured\":\"0\",\"status\":\"draft\",\"image\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"icon\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Fashion', 'primary', '2025-08-03 15:32:31', '2025-08-03 15:32:31');
INSERT INTO `audit_histories` VALUES (271, 1, 'category', '{\"order\":\"5\",\"name\":\"Hotel\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Category\",\"slug\":\"hotel\",\"slug_id\":\"22\",\"is_slug_editable\":\"1\",\"parent_id\":\"0\",\"description\":null,\"is_default\":\"0\",\"is_featured\":\"0\",\"status\":\"draft\",\"image\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"icon\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Hotel', 'primary', '2025-08-03 15:32:55', '2025-08-03 15:32:55');
INSERT INTO `audit_histories` VALUES (272, 1, 'post', '{\"name\":\"The Church\'s Choir\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-churchs-choir\",\"slug_id\":\"44\",\"is_slug_editable\":\"1\",\"description\":\"Voluptate distinctio facilis quia laboriosam excepturi adipisci. Sed dolor eos qui ut voluptas ducimus. Occaecati a sunt atque et libero. Asperiores voluptatem nostrum et eum at labore ratione et.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":\"https:\\/\\/player.vimeo.com\\/video\\/580799106?h=a8eb717af9\",\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"1\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\"],\"image\":\"news\\/news-14.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'The Church\'s Choir', 'primary', '2025-08-03 15:35:40', '2025-08-03 15:35:40');
INSERT INTO `audit_histories` VALUES (273, 1, 'post', '{\"name\":\"The Church\'s Choir\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-churchs-choir\",\"slug_id\":\"44\",\"is_slug_editable\":\"1\",\"description\":\"Voluptate distinctio facilis quia laboriosam excepturi adipisci. Sed dolor eos qui ut voluptas ducimus. Occaecati a sunt atque et libero. Asperiores voluptatem nostrum et eum at labore ratione et.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":\"https:\\/\\/player.vimeo.com\\/video\\/580799106?h=a8eb717af9\",\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"1\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":null,\"categories\":[\"1\"],\"image\":\"news\\/news-14.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'The Church\'s Choir', 'primary', '2025-08-03 15:35:56', '2025-08-03 15:35:56');
INSERT INTO `audit_histories` VALUES (274, 1, 'post', '{\"name\":\"The Church\'s Choir\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-churchs-choir\",\"slug_id\":\"44\",\"is_slug_editable\":\"1\",\"description\":\"Voluptate distinctio facilis quia laboriosam excepturi adipisci. Sed dolor eos qui ut voluptas ducimus. Occaecati a sunt atque et libero. Asperiores voluptatem nostrum et eum at labore ratione et.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":\"https:\\/\\/player.vimeo.com\\/video\\/580799106?h=a8eb717af9\",\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"1\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":null,\"categories\":[\"1\"],\"image\":\"hqdefault-1.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'The Church\'s Choir', 'primary', '2025-08-03 15:42:56', '2025-08-03 15:42:56');
INSERT INTO `audit_histories` VALUES (275, 1, 'post', '{\"ids\":[\"6\",\"12\",\"17\",\"18\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Essential Qualities of Highly Successful Music', 'danger', '2025-08-03 15:44:54', '2025-08-03 15:44:54');
INSERT INTO `audit_histories` VALUES (276, 1, 'post', '{\"ids\":[\"6\",\"12\",\"17\",\"18\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'A Skin Cream That’s Proven To Work', 'danger', '2025-08-03 15:44:54', '2025-08-03 15:44:54');
INSERT INTO `audit_histories` VALUES (277, 1, 'post', '{\"ids\":[\"6\",\"12\",\"17\",\"18\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, '10,000 Web Site Visitors In One Month:Guaranteed', 'danger', '2025-08-03 15:44:54', '2025-08-03 15:44:54');
INSERT INTO `audit_histories` VALUES (278, 1, 'post', '{\"ids\":[\"6\",\"12\",\"17\",\"18\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 18, 'Unlock The Secrets Of Selling High Ticket Items', 'danger', '2025-08-03 15:44:55', '2025-08-03 15:44:55');
INSERT INTO `audit_histories` VALUES (279, 1, 'post', '{\"ids\":[\"15\",\"4\",\"7\",\"8\",\"9\",\"11\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'We got a right to pick a little fight, Bonanza', 'danger', '2025-08-03 15:45:28', '2025-08-03 15:45:28');
INSERT INTO `audit_histories` VALUES (280, 1, 'post', '{\"ids\":[\"15\",\"4\",\"7\",\"8\",\"9\",\"11\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'Why Teamwork Really Makes The Dream Work', 'danger', '2025-08-03 15:45:28', '2025-08-03 15:45:28');
INSERT INTO `audit_histories` VALUES (281, 1, 'post', '{\"ids\":[\"15\",\"4\",\"7\",\"8\",\"9\",\"11\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, '9 Things I Love About Shaving My Head During Quarantine', 'danger', '2025-08-03 15:45:28', '2025-08-03 15:45:28');
INSERT INTO `audit_histories` VALUES (282, 1, 'post', '{\"ids\":[\"15\",\"4\",\"7\",\"8\",\"9\",\"11\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'The litigants on the screen are not actors', 'danger', '2025-08-03 15:45:28', '2025-08-03 15:45:28');
INSERT INTO `audit_histories` VALUES (283, 1, 'post', '{\"ids\":[\"15\",\"4\",\"7\",\"8\",\"9\",\"11\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Are You Still Using That Slow, Old Typewriter?', 'danger', '2025-08-03 15:45:28', '2025-08-03 15:45:28');
INSERT INTO `audit_histories` VALUES (284, 1, 'post', '{\"ids\":[\"15\",\"4\",\"7\",\"8\",\"9\",\"11\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Blog\\\\Tables\\\\PostTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Simple Ways To Reduce Your Unwanted Wrinkles!', 'danger', '2025-08-03 15:45:28', '2025-08-03 15:45:28');
INSERT INTO `audit_histories` VALUES (285, 1, 'post', '{\"name\":\"The Youth\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-youth\",\"slug_id\":\"50\",\"is_slug_editable\":\"1\",\"description\":\"Vel deserunt dolore non error odio molestiae hic eum. Placeat exercitationem ut sint nam quas aut. Ut quaerat suscipit dolore est. Sit rerum illum eaque eveniet non sunt.\",\"is_featured\":\"1\",\"content\":\"<h2>Dormouse,\' the Queen to play.<\\/h2><p>She ate a little way out of it, and finding it very much,\' said Alice, \'because I\'m not the smallest notice of her voice. Nobody moved. \'Who cares for you?\' said the Dormouse, not choosing to notice this question, but hurriedly went on, \'What HAVE you been doing here?\' \'May it please your Majesty,\' said the Caterpillar seemed to quiver all over crumbs.\' \'You\'re wrong about the reason so many different sizes in a pleased tone. \'Pray don\'t trouble yourself to say it out to sea!\\\" But the insolence of his teacup instead of the jurors had a pencil that squeaked. This of course, Alice could only see her. She is such a very little! Besides, SHE\'S she, and I\'m sure I don\'t want YOU with us!\\\"\' \'They were obliged to say \'Drink me,\' but the Hatter asked triumphantly. Alice did not notice this question, but hurriedly went on, turning to the Classics master, though. He was looking down at her rather inquisitively, and seemed not to be in Bill\'s place for a conversation. \'You don\'t know much,\'.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-7-600x421.jpg\\\" alt=\\\"news-7-600x421.jpg\\\"><\\/p><p>VERY wide, but she knew that it had made. \'He took me for asking! No, it\'ll never do to hold it. As soon as she did it at all; and I\'m sure I don\'t think,\' Alice went on, \'I must be growing small again.\' She got up in such long ringlets, and mine doesn\'t go in at the stick, and tumbled head over heels in its hurry to change them--\' when she noticed that the hedgehog a blow with its eyelids, so he with his tea spoon at the cook, to see what would happen next. First, she tried to say it out to.<\\/p><h2>Hatter. \'Stolen!\' the King.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-10-600x421.jpg\\\" alt=\\\"news-10-600x421.jpg\\\"><\\/p><p>Turtle.\' These words were followed by a row of lamps hanging from the time they had a VERY unpleasant state of mind, she turned away. \'Come back!\' the Caterpillar took the regular course.\' \'What was that?\' inquired Alice. \'Reeling and Writhing, of course, to begin with,\' the Mock Turtle sighed deeply, and began, in a low voice, to the door, and knocked. \'There\'s no such thing!\' Alice was beginning very angrily, but the Mouse replied rather crossly: \'of course you know I\'m mad?\' said Alice. \'That\'s the first minute or two, looking for them, and all the things being alive; for instance, there\'s the arch I\'ve got to the puppy; whereupon the puppy jumped into the garden with one finger, as he shook both his shoes on. \'--and just take his head contemptuously. \'I dare say you never tasted an egg!\' \'I HAVE tasted eggs, certainly,\' said Alice, swallowing down her anger as well as she went on again:-- \'I didn\'t write it, and they can\'t prove I did: there\'s no harm in trying.\' So she set off.<\\/p><h2>Mock Turtle. So she tucked.<\\/h2><h3>Mock Turtle drew a long time.<\\/h3><p>I\'m afraid, sir\' said Alice, a good deal until she had to stop and untwist it. After a minute or two, they began running about in the middle, being held up by a very little! Besides, SHE\'S she, and I\'m sure I don\'t remember where.\' \'Well, it must be getting home; the night-air doesn\'t suit my throat!\' and a sad tale!\' said the Caterpillar took the hookah out of a treacle-well--eh, stupid?\' \'But they were filled with cupboards and book-shelves; here and there. There was a large dish of tarts.<\\/p><h3>Alice in a bit.\' \'Perhaps it.<\\/h3><p>They are waiting on the breeze that followed them, the melancholy words:-- \'Soo--oop of the party sat silent and looked at Two. Two began in a melancholy tone. \'Nobody seems to like her, down here, that I should say \\\"With what porpoise?\\\"\' \'Don\'t you mean \\\"purpose\\\"?\' said Alice. \'What IS the use of this ointment--one shilling the box-- Allow me to him: She gave me a pair of the March Hare. Alice was only sobbing,\' she thought, \'and hand round the neck of the jurors had a vague sort of meaning.<\\/p><h3>March--just before HE went.<\\/h3><p>Number One,\' said Alice. \'Exactly so,\' said Alice. \'I\'m a--I\'m a--\' \'Well! WHAT are you?\' And then a row of lamps hanging from the sky! Ugh, Serpent!\' \'But I\'m not used to say \\\"HOW DOTH THE LITTLE BUSY BEE,\\\" but it makes me grow smaller, I can remember feeling a little bit of mushroom, and crawled away in the middle of one! There ought to have no notion how delightful it will be When they take us up and saying, \'Thank you, it\'s a French mouse, come over with diamonds, and walked two and two.<\\/p><h3>Alice, looking down with her.<\\/h3><p>Alice. \'I\'ve read that in some book, but I think I must go by the prisoner to--to somebody.\' \'It must have prizes.\' \'But who is to find that her shoulders were nowhere to be a letter, after all: it\'s a French mouse, come over with fright. \'Oh, I know!\' exclaimed Alice, who was gently brushing away some dead leaves that lay far below her. \'What CAN all that stuff,\' the Mock Turtle. So she set the little dears came jumping merrily along hand in her haste, she had forgotten the Duchess to play.<\\/p><h2>I haven\'t been invited yet.\'.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-15-600x421.jpg\\\" alt=\\\"news-15-600x421.jpg\\\"><\\/p><p>Gryphon. \'It all came different!\' Alice replied eagerly, for she had not gone much farther before she gave her one, they gave him two, You gave us three or more; They all sat down again into its face to see what the name of the sea.\' \'I couldn\'t help it,\' said Alice, quite forgetting in the same size: to be otherwise.\\\"\' \'I think you can have no idea how to begin.\' For, you see, as they were getting so thin--and the twinkling of the court,\\\" and I shall never get to the table, but it was too.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"15\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"2\"],\"image\":\"istockphoto-1191647689-612x612.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 20, 'The Youth', 'primary', '2025-08-03 15:46:29', '2025-08-03 15:46:29');
INSERT INTO `audit_histories` VALUES (286, 1, 'post', '{\"name\":\"A Christian presence in your community\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"a-christian-presence-in-your-community\",\"slug_id\":\"33\",\"is_slug_editable\":\"1\",\"description\":\"Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.\",\"is_featured\":\"1\",\"content\":\"<h2>I hadn\'t mentioned Dinah!\'.<\\/h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-5-600x421.jpg\\\" alt=\\\"news-5-600x421.jpg\\\"><\\/p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.<\\/p><h2>Knave was standing before.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\\\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\\\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.<\\/p><h2>I\'ll be jury,\\\" Said cunning.<\\/h2><h3>Duck. \'Found IT,\' the Mouse.<\\/h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.<\\/p><h3>Five! Don\'t go splashing.<\\/h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.<\\/p><h3>Dormouse turned out, and, by.<\\/h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.<\\/p><h3>Alice. \'I don\'t even know.<\\/h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\\\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.<\\/p><h2>Alice did not like to have.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-17-600x421.jpg\\\" alt=\\\"news-17-600x421.jpg\\\"><\\/p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\\\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":\"inline\",\"status\":\"published\",\"author_id\":\"1\",\"categories\":[\"2\"],\"image\":\"windrush-service-at-manchester-cathedral2.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"no\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'A Christian presence in your community', 'primary', '2025-08-03 15:47:31', '2025-08-03 15:47:31');
INSERT INTO `audit_histories` VALUES (287, 1, 'post', '{\"name\":\"10 Reasons To Start Your Own, Profitable Website!\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"10-reasons-to-start-your-own-profitable-website\",\"slug_id\":\"43\",\"is_slug_editable\":\"1\",\"description\":\"Qui aut et et ea et harum. Voluptate nemo harum et adipisci voluptate dolorum. Fuga similique repellat voluptas voluptatum. Rem natus porro vel est perferendis natus voluptatem.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"6\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\"],\"image\":\"news\\/news-13.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, '10 Reasons To Start Your Own, Profitable Website!', 'primary', '2025-08-03 15:48:48', '2025-08-03 15:48:48');
INSERT INTO `audit_histories` VALUES (288, 1, 'post', '{\"name\":\"Welcome to St. John the Evangelist Anglican Church\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"1753884137\",\"slug_id\":\"31\",\"is_slug_editable\":\"1\",\"description\":\"Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.\",\"is_featured\":\"1\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"9\",\"layout\":\"default\",\"status\":\"published\",\"author_id\":\"1\",\"format_type\":null,\"image\":\"silhouette-of-cross-against-colorful-sunset-sky-video.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Welcome to St. John the Evangelist Anglican Church', 'primary', '2025-08-03 15:49:31', '2025-08-03 15:49:31');
INSERT INTO `audit_histories` VALUES (289, 1, 'post', '{\"name\":\".\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"the-churchs-mission-and-ambitions\",\"slug_id\":\"32\",\"is_slug_editable\":\"1\",\"description\":\"Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.\",\"is_featured\":\"1\",\"content\":\"<h2>Mabel, for I know all sorts.<\\/h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.<\\/p><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-4-600x421.jpg\\\" alt=\\\"news-4-600x421.jpg\\\"><\\/p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.<\\/p><h2>CAN all that stuff,\' the.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-8-600x421.jpg\\\" alt=\\\"news-8-600x421.jpg\\\"><\\/p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\\\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.<\\/p><h2>Alice, \'a great girl like.<\\/h2><h3>While the Duchess said in a.<\\/h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.<\\/p><h3>She pitied him deeply. \'What.<\\/h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.<\\/p><h3>I\'ve got to come down the.<\\/h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.<\\/p><h3>Time!\' \'Perhaps not,\' Alice.<\\/h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.<\\/p><h2>The further off from England.<\\/h2><p class=\\\"text-center\\\"><img src=\\\"http:\\/\\/localhost\\/storage\\/news\\/news-19-600x421.jpg\\\" alt=\\\"news-19-600x421.jpg\\\"><\\/p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\\\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.<\\/p>\",\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"1\",\"layout\":\"top-full\",\"status\":\"published\",\"author_id\":\"1\",\"image\":\"369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, '.', 'primary', '2025-08-03 15:50:26', '2025-08-03 15:50:26');
INSERT INTO `audit_histories` VALUES (290, 1, 'post', '{\"name\":\"My entrance exam was on a book of matches\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"my-entrance-exam-was-on-a-book-of-matches\",\"slug_id\":\"35\",\"is_slug_editable\":\"1\",\"description\":\"Fugiat officia voluptas sed quam ut. Perspiciatis illum voluptatum reiciendis est ut doloremque molestiae. In provident laudantium illo sunt facilis officiis.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":\"videos\\/video1.mp4\",\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"13\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\"],\"image\":\"news\\/news-5.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'My entrance exam was on a book of matches', 'primary', '2025-08-03 15:52:15', '2025-08-03 15:52:15');
INSERT INTO `audit_histories` VALUES (291, 1, 'post', '{\"name\":\"Imagine Losing 20 Pounds In 14 Days!\",\"model\":\"Botble\\\\Blog\\\\Models\\\\Post\",\"slug\":\"imagine-losing-20-pounds-in-14-days\",\"slug_id\":\"40\",\"is_slug_editable\":\"1\",\"description\":\"Facilis sit modi cumque maiores quisquam distinctio exercitationem. Molestias et sunt sapiente et omnis exercitationem. Commodi omnis consequatur aut adipisci. Et laudantium quod doloribus possimus.\",\"is_featured\":\"0\",\"content\":null,\"video_link\":null,\"video_embed_code\":null,\"video_upload_id\":null,\"gallery\":null,\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"publish_date\":\"2024-12-28\",\"publish_time\":null,\"time_to_read\":\"8\",\"layout\":null,\"status\":\"published\",\"author_id\":\"1\",\"format_type\":\"video\",\"categories\":[\"1\"],\"image\":\"news\\/news-10.jpg\",\"tag\":\"[{\\\"value\\\":\\\"General\\\"},{\\\"value\\\":\\\"Beauty\\\"},{\\\"value\\\":\\\"Fashion\\\"},{\\\"value\\\":\\\"Lifestyle\\\"},{\\\"value\\\":\\\"Travel\\\"},{\\\"value\\\":\\\"Business\\\"},{\\\"value\\\":\\\"Health\\\"}]\",\"show_toc_in_content\":\"yes\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Imagine Losing 20 Pounds In 14 Days!', 'primary', '2025-08-03 15:53:02', '2025-08-03 15:53:02');
INSERT INTO `audit_histories` VALUES (292, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-04 07:58:28', '2025-08-04 07:58:28');
INSERT INTO `audit_histories` VALUES (293, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-04 07:58:37', '2025-08-04 07:58:37');
INSERT INTO `audit_histories` VALUES (294, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-05 12:13:45', '2025-08-05 12:13:45');
INSERT INTO `audit_histories` VALUES (295, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-06 12:05:29', '2025-08-06 12:05:29');
INSERT INTO `audit_histories` VALUES (296, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-06 12:05:32', '2025-08-06 12:05:32');
INSERT INTO `audit_histories` VALUES (297, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-06 14:16:49', '2025-08-06 14:16:49');
INSERT INTO `audit_histories` VALUES (298, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-06 14:16:50', '2025-08-06 14:16:50');
INSERT INTO `audit_histories` VALUES (299, 1, 'of the system', '[]', 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Zoie Reinger', 'info', '2025-08-06 14:16:50', '2025-08-06 14:16:50');
INSERT INTO `audit_histories` VALUES (300, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'Zoie Reinger', 'info', '2025-08-06 14:20:09', '2025-08-06 14:20:09');

-- ----------------------------
-- Table structure for bb_comment_likes
-- ----------------------------
DROP TABLE IF EXISTS `bb_comment_likes`;
CREATE TABLE `bb_comment_likes`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `user_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `bb_comment_likes_comment_id_index`(`comment_id`) USING BTREE,
  INDEX `bb_comment_likes_user_id_index`(`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for bb_comment_recommends
-- ----------------------------
DROP TABLE IF EXISTS `bb_comment_recommends`;
CREATE TABLE `bb_comment_recommends`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `user_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `bb_comment_recommends_user_id_index`(`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for bb_comment_users
-- ----------------------------
DROP TABLE IF EXISTS `bb_comment_users`;
CREATE TABLE `bb_comment_users`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `last_name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `bb_comment_users_email_unique`(`email`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of bb_comment_users
-- ----------------------------
INSERT INTO `bb_comment_users` VALUES (1, 'Blaze', 'yaltenwerth@erdman.com', '$2y$12$hr8Pgvy9AesJBdkd/d2izejE2LS9msZ0VqahaXjewW342jVU6Olna', 52, NULL, '2024-12-28 04:21:21', '2024-12-28 04:21:21', 'Dickens');
INSERT INTO `bb_comment_users` VALUES (2, 'Wanda', 'corbin38@hotmail.com', '$2y$12$3sQOfCefUyPfX9GKkE7wyOJXO0Ui5eA7Pe4fUmfMThnXbEqyhDo8y', 51, NULL, '2024-12-28 04:21:21', '2024-12-28 04:21:21', 'Effertz');
INSERT INTO `bb_comment_users` VALUES (3, 'Marvin', 'qkuhic@baumbach.biz', '$2y$12$K12wdxJpdgomJxn0xWM7AOl//f.keTafMPQ2ub8avmTEN0BO3Jo9K', 54, NULL, '2024-12-28 04:21:22', '2024-12-28 04:21:22', 'Jast');
INSERT INTO `bb_comment_users` VALUES (4, 'Nickolas', 'ankunding.alec@hotmail.com', '$2y$12$uXU5sGvDg7CZGq5kMFvNj.HVU71NOtkl1C77.lHwcrcV9SygwIGSO', 53, NULL, '2024-12-28 04:21:22', '2024-12-28 04:21:22', 'Daniel');
INSERT INTO `bb_comment_users` VALUES (5, 'Athena', 'qcasper@conroy.org', '$2y$12$MJ1mx6M5S1awh.D3GCzQZOaxYWni/TKZ3HhQgPX/tvqm2/chSsHa6', 52, NULL, '2024-12-28 04:21:22', '2024-12-28 04:21:22', 'Nader');
INSERT INTO `bb_comment_users` VALUES (6, 'Efrain', 'micheal.howe@gmail.com', '$2y$12$eqEVZXHmpaTz0Z1YStMKs.7eYvj8pmO4.zK/5PpV2PW194WFxD97K', 55, NULL, '2024-12-28 04:21:22', '2024-12-28 04:21:22', 'Ortiz');
INSERT INTO `bb_comment_users` VALUES (7, 'Coty', 'ona.muller@huel.com', '$2y$12$33HlBJ1wOSUU0RniGGWSoe.ijpmQjf1xCR3r/9obe.zFXc84Kux/W', 55, NULL, '2024-12-28 04:21:22', '2024-12-28 04:21:22', 'Dibbert');
INSERT INTO `bb_comment_users` VALUES (8, 'Jameson', 'valentina.beer@mcclure.com', '$2y$12$nTDaPGaO4V9S8uK3VKGBaO4igjI8IenOXmvRFvaC4o5lCcLX/Wmzu', 53, NULL, '2024-12-28 04:21:23', '2024-12-28 04:21:23', 'Yundt');
INSERT INTO `bb_comment_users` VALUES (9, 'Hadley', 'leuschke.herminia@yahoo.com', '$2y$12$gzmNYEZQpZcaQDJEHVFmKOKEBYgzlXlpnKCIRKwvWXrb7CSfcCDJu', 55, NULL, '2024-12-28 04:21:23', '2024-12-28 04:21:23', 'Halvorson');
INSERT INTO `bb_comment_users` VALUES (10, 'Jarvis', 'heath49@yahoo.com', '$2y$12$TQ3KCg9dqA8oVoPwh5HDLuFxsIaUpCqrxr1ws71zWypptK85mAxwO', 52, NULL, '2024-12-28 04:21:23', '2024-12-28 04:21:23', 'Jacobson');

-- ----------------------------
-- Table structure for bb_comments
-- ----------------------------
DROP TABLE IF EXISTS `bb_comments`;
CREATE TABLE `bb_comments`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `comment` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ip_address` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `like_count` int(11) NOT NULL DEFAULT 0,
  `reply_count` int(11) NOT NULL DEFAULT 0,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `user_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 49 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for cache
-- ----------------------------
DROP TABLE IF EXISTS `cache`;
CREATE TABLE `cache`  (
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` int(11) NOT NULL,
  PRIMARY KEY (`key`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for cache_locks
-- ----------------------------
DROP TABLE IF EXISTS `cache_locks`;
CREATE TABLE `cache_locks`  (
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `owner` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` int(11) NOT NULL,
  PRIMARY KEY (`key`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for categories
-- ----------------------------
DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `icon` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `is_featured` tinyint(4) NOT NULL DEFAULT 0,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `categories_parent_id_index`(`parent_id`) USING BTREE,
  INDEX `categories_status_index`(`status`) USING BTREE,
  INDEX `categories_created_at_index`(`created_at`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of categories
-- ----------------------------
INSERT INTO `categories` VALUES (1, 'Guilds', 0, '', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 0, '2024-12-28 04:21:17', '2025-08-03 15:30:58');
INSERT INTO `categories` VALUES (2, 'Lifestyle', 0, NULL, 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 1, 0, 0, '2024-12-28 04:21:17', '2025-07-30 16:29:08');
INSERT INTO `categories` VALUES (3, 'Events', 0, '', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 2, 0, 0, '2024-12-28 04:21:17', '2025-08-03 15:31:36');
INSERT INTO `categories` VALUES (4, 'Announcements', 0, '', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 3, 0, 0, '2024-12-28 04:21:17', '2025-08-03 15:32:12');
INSERT INTO `categories` VALUES (5, 'Fashion', 0, '', 'draft', 1, 'Botble\\ACL\\Models\\User', NULL, 4, 0, 0, '2024-12-28 04:21:17', '2025-08-03 15:32:31');
INSERT INTO `categories` VALUES (6, 'Hotel', 0, '', 'draft', 1, 'Botble\\ACL\\Models\\User', NULL, 5, 0, 0, '2024-12-28 04:21:17', '2025-08-03 15:32:55');
INSERT INTO `categories` VALUES (7, 'Nature', 0, NULL, 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 6, 0, 0, '2024-12-28 04:21:17', '2025-07-30 16:29:08');

-- ----------------------------
-- Table structure for categories_translations
-- ----------------------------
DROP TABLE IF EXISTS `categories_translations`;
CREATE TABLE `categories_translations`  (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `categories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  PRIMARY KEY (`lang_code`, `categories_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of categories_translations
-- ----------------------------
INSERT INTO `categories_translations` VALUES ('vi', 1, 'Phong cách sống', NULL);
INSERT INTO `categories_translations` VALUES ('vi', 2, 'Sức khỏe', NULL);
INSERT INTO `categories_translations` VALUES ('vi', 3, 'Món ngon', NULL);
INSERT INTO `categories_translations` VALUES ('vi', 4, 'Sách', NULL);
INSERT INTO `categories_translations` VALUES ('vi', 5, 'Mẹo du lịch', NULL);
INSERT INTO `categories_translations` VALUES ('vi', 6, 'Khách sạn', NULL);
INSERT INTO `categories_translations` VALUES ('vi', 7, 'Thiên nhiên', NULL);

-- ----------------------------
-- Table structure for contact_custom_field_options
-- ----------------------------
DROP TABLE IF EXISTS `contact_custom_field_options`;
CREATE TABLE `contact_custom_field_options`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `custom_field_id` bigint(20) UNSIGNED NOT NULL,
  `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` int(11) NOT NULL DEFAULT 999,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for contact_custom_field_options_translations
-- ----------------------------
DROP TABLE IF EXISTS `contact_custom_field_options_translations`;
CREATE TABLE `contact_custom_field_options_translations`  (
  `contact_custom_field_options_id` bigint(20) UNSIGNED NOT NULL,
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  PRIMARY KEY (`lang_code`, `contact_custom_field_options_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for contact_custom_fields
-- ----------------------------
DROP TABLE IF EXISTS `contact_custom_fields`;
CREATE TABLE `contact_custom_fields`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `required` tinyint(1) NOT NULL DEFAULT 0,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `placeholder` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `order` int(11) NOT NULL DEFAULT 999,
  `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for contact_custom_fields_translations
-- ----------------------------
DROP TABLE IF EXISTS `contact_custom_fields_translations`;
CREATE TABLE `contact_custom_fields_translations`  (
  `contact_custom_fields_id` bigint(20) UNSIGNED NOT NULL,
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `placeholder` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  PRIMARY KEY (`lang_code`, `contact_custom_fields_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for contact_replies
-- ----------------------------
DROP TABLE IF EXISTS `contact_replies`;
CREATE TABLE `contact_replies`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for contacts
-- ----------------------------
DROP TABLE IF EXISTS `contacts`;
CREATE TABLE `contacts`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `phone` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `address` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `subject` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `custom_fields` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of contacts
-- ----------------------------
INSERT INTO `contacts` VALUES (1, 'Amaya Beier', 'vkautzer@example.com', '+1 (304) 787-6739', '242 Hermann Throughway Apt. 555\nAnneshire, NE 47057-8347', 'Exercitationem est quas occaecati perspiciatis.', 'Minima facere labore sed sed voluptatem ut. Ducimus sed libero doloribus et enim sit quibusdam. Vero mollitia deleniti corporis dicta eaque laborum temporibus. Quis repellat possimus repellendus debitis natus. Alias enim delectus minus asperiores. Tempore quo omnis ratione dolorem odio ab. Aut ut aut impedit et molestias harum amet. Suscipit quisquam aut quia rem adipisci. Mollitia tempore dolores optio ex dolorem suscipit. Sit sequi adipisci est eum. Ut est voluptatibus rerum autem ipsum.', NULL, 'unread', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (2, 'Nyasia Borer PhD', 'dickens.betsy@example.net', '+1.812.287.5966', '3632 Korey Forges Apt. 898\nEast Maxie, ME 33266', 'Dolorum itaque minus ipsam et.', 'Blanditiis consequatur aut velit et mollitia. Non ut modi vitae error a ratione vero. Corporis id asperiores facere rerum est quam laborum id. Molestias earum doloribus sunt iure in. Est necessitatibus sint in vel placeat eligendi. Repudiandae voluptas unde maiores quasi qui dolores. Sed et autem et. Sunt quibusdam voluptatem similique vel est nobis vel. Eum voluptatibus harum nobis amet. Ullam voluptates eius aliquid aut.', NULL, 'unread', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (3, 'Prof. Lennie Gutmann', 'aisha.pfeffer@example.com', '+1-212-279-1830', '75576 Rath Road Suite 946\nPort Daisha, NJ 47648', 'Quam repellendus voluptas earum enim quia.', 'Nihil saepe laborum voluptas nihil accusantium vitae rerum. Ea fugit est excepturi ratione quia. Architecto maiores enim laborum beatae ducimus dicta neque. Aperiam et vel necessitatibus molestiae eos voluptas. Voluptatem ex tempore omnis ut. Praesentium sit magni sequi explicabo et soluta. Est sit odit eum voluptatem nesciunt enim placeat.', NULL, 'unread', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (4, 'Miss Billie Ziemann Sr.', 'kiehn.crystel@example.net', '+18204758010', '3840 Emie Lake Apt. 171\nWest Jessyca, DE 58517', 'Dolor nemo dicta ullam.', 'Voluptate libero officia mollitia. Aut quo harum eligendi. Quam et repellendus optio qui doloremque voluptatem sequi. Aperiam veritatis modi eius ratione dicta excepturi. Vero nihil veritatis occaecati earum. Quia cum ut in et eveniet magni aliquid voluptatem. Perspiciatis assumenda aliquam ullam laboriosam laudantium laborum. Distinctio voluptatem assumenda neque non repellat reiciendis. Enim ducimus maiores est reiciendis recusandae qui. Sed dolores blanditiis eius est id consequuntur.', NULL, 'unread', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (5, 'Dr. Ansley Johnson', 'madie42@example.com', '276.630.8360', '417 Tremblay Green\nMetzberg, CO 67682-8415', 'Alias quaerat inventore expedita consequuntur.', 'Quae qui maxime atque voluptatum dolore. Sint debitis dolorum adipisci in necessitatibus aut voluptatum. Sunt quas maxime earum. Et voluptatem dolor consectetur omnis id porro. Explicabo aperiam facilis fuga aperiam. Quis laborum omnis praesentium ex vitae odio. Numquam et laudantium dolor ipsam. Recusandae ut facere optio iure iusto. Sed officiis et voluptatum. Beatae eos harum facere autem.', NULL, 'unread', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (6, 'Ashtyn Reynolds', 'ckovacek@example.com', '678-934-5533', '8706 Waldo Gardens\nNew Kylietown, IL 20020-6516', 'Debitis fuga natus nihil ea cupiditate aut.', 'Nihil accusantium consequatur esse. Labore molestias est autem ut ex corporis assumenda. Qui optio deserunt libero natus. Rem deserunt occaecati porro qui labore quibusdam aliquam. Libero occaecati distinctio nostrum et est. Odio quas quasi vel qui a deserunt ullam. Et incidunt eos placeat facere voluptas dolor et. Ut vel enim recusandae ullam consequatur. Rem id dolor dolores repellat voluptatum ut saepe. Dicta reiciendis cum et architecto eveniet.', NULL, 'read', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (7, 'Mrs. Maude Greenfelder III', 'andreane18@example.net', '1-726-704-2695', '115 McLaughlin Valleys Suite 267\nAugustport, NY 11201-8900', 'Blanditiis sed et laborum quisquam magnam cum.', 'Quod vel dolorem voluptatem mollitia officia dolorem vero. Eum ratione eaque sit totam voluptatem totam unde. Corporis sint illo dolore quisquam. Est non est quam doloribus. Aliquam cupiditate et assumenda delectus. Excepturi alias fugiat inventore omnis et nostrum corporis ut. Dignissimos necessitatibus dolor odit corporis ratione. Ipsam dolor expedita qui eum. Quaerat error earum vel et.', NULL, 'unread', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (8, 'Arianna Abshire DVM', 'roberts.octavia@example.net', '531.825.8027', '1760 Robel Parkways Suite 736\nHamillville, MI 27914', 'Quia quod sint ducimus temporibus.', 'Et vel voluptatem omnis sit et sed. Ea consequatur corrupti sed molestias eos sunt consequuntur. Assumenda nesciunt veniam alias eveniet. Error maiores quaerat qui illum omnis dolores vitae impedit. Autem numquam ipsam voluptatem suscipit. Est quia et architecto debitis ducimus rerum non fugiat. Nemo doloribus sed est. Exercitationem optio quis dignissimos sed.', NULL, 'unread', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (9, 'Miss Edythe Bogisich', 'qsporer@example.org', '619-437-8763', '59680 Hailie Divide\nEast Mazieland, WY 92231-4203', 'A alias sed non nostrum corporis nihil in.', 'Soluta velit eius sit quo quos aut. Sunt sit minus nesciunt optio architecto animi ut magni. Consectetur tempora ab totam tenetur. Eos dicta unde laboriosam. Eligendi consequatur velit occaecati qui. Velit maiores necessitatibus voluptas et et natus. Quis facere aut voluptatum. Vel numquam eum et. Aut porro et error non rerum. Quia velit odit reprehenderit illo.', NULL, 'unread', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `contacts` VALUES (10, 'Maia Sipes', 'jensen52@example.net', '+1 (551) 402-9522', '222 Alden Freeway\nWest Abel, NE 16160', 'Voluptatem et sed dolorem eius reprehenderit.', 'Quia explicabo voluptatem cum aut commodi nulla magnam hic. Laboriosam aliquam ab sint voluptas repellendus sit. Consequatur ab officiis tenetur maxime eos voluptatem architecto. Asperiores nesciunt quis nisi odio autem voluptatem animi. Fugit commodi nesciunt voluptatem optio tempora facere at. Enim dignissimos dignissimos beatae eum.', NULL, 'read', '2024-12-28 04:21:15', '2024-12-28 04:21:15');

-- ----------------------------
-- Table structure for dashboard_widget_settings
-- ----------------------------
DROP TABLE IF EXISTS `dashboard_widget_settings`;
CREATE TABLE `dashboard_widget_settings`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `settings` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `widget_id` bigint(20) UNSIGNED NOT NULL,
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` tinyint(3) UNSIGNED NOT NULL DEFAULT 1,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `dashboard_widget_settings_user_id_index`(`user_id`) USING BTREE,
  INDEX `dashboard_widget_settings_widget_id_index`(`widget_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for dashboard_widgets
-- ----------------------------
DROP TABLE IF EXISTS `dashboard_widgets`;
CREATE TABLE `dashboard_widgets`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of dashboard_widgets
-- ----------------------------
INSERT INTO `dashboard_widgets` VALUES (1, 'widget_total_themes', '2024-02-12 03:22:35', '2024-02-12 03:22:35');
INSERT INTO `dashboard_widgets` VALUES (2, 'widget_total_users', '2024-02-12 03:22:35', '2024-02-12 03:22:35');
INSERT INTO `dashboard_widgets` VALUES (3, 'widget_total_plugins', '2024-02-12 03:22:35', '2024-02-12 03:22:35');
INSERT INTO `dashboard_widgets` VALUES (4, 'widget_total_pages', '2024-02-12 03:22:35', '2024-02-12 03:22:35');
INSERT INTO `dashboard_widgets` VALUES (5, 'widget_analytics_general', '2024-02-12 03:22:35', '2024-02-12 03:22:35');
INSERT INTO `dashboard_widgets` VALUES (6, 'widget_analytics_page', '2024-02-12 03:22:35', '2024-02-12 03:22:35');
INSERT INTO `dashboard_widgets` VALUES (7, 'widget_analytics_browser', '2024-02-12 03:22:35', '2024-02-12 03:22:35');
INSERT INTO `dashboard_widgets` VALUES (8, 'widget_analytics_referrer', '2024-02-12 03:22:35', '2024-02-12 03:22:35');
INSERT INTO `dashboard_widgets` VALUES (9, 'widget_posts_recent', '2024-02-12 03:22:36', '2024-02-12 03:22:36');
INSERT INTO `dashboard_widgets` VALUES (10, 'widget_audit_logs', '2024-02-12 03:22:36', '2024-02-12 03:22:36');
INSERT INTO `dashboard_widgets` VALUES (11, 'widget_request_errors', '2024-02-12 03:22:36', '2024-02-12 03:22:36');

-- ----------------------------
-- Table structure for failed_jobs
-- ----------------------------
DROP TABLE IF EXISTS `failed_jobs`;
CREATE TABLE `failed_jobs`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `uuid` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp(0) NOT NULL DEFAULT current_timestamp(0),
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `failed_jobs_uuid_unique`(`uuid`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for favorite_posts
-- ----------------------------
DROP TABLE IF EXISTS `favorite_posts`;
CREATE TABLE `favorite_posts`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `post_id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `type` enum('favorite','bookmark') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `favorite_posts_post_id_user_id_type_unique`(`post_id`, `user_id`, `type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for galleries
-- ----------------------------
DROP TABLE IF EXISTS `galleries`;
CREATE TABLE `galleries`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `galleries_user_id_index`(`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of galleries
-- ----------------------------
INSERT INTO `galleries` VALUES (1, 'Perfect', 'In amet quae rem omnis placeat inventore deleniti. Reprehenderit sapiente ut fugit. Ea occaecati quia ut qui dolores eos vitae.', 1, 0, 'galleries/1.jpg', 1, 'published', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `galleries` VALUES (2, 'New Day', 'Sint beatae quae aut qui. Repellendus ea at dolor nobis id magnam facere. Et incidunt in rerum et quis vitae soluta omnis.', 1, 0, 'galleries/2.jpg', 1, 'published', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `galleries` VALUES (3, 'Happy Day', 'Nostrum et a quae omnis quia. Suscipit nihil ipsam odio aperiam et voluptatum voluptas ullam. Molestiae quia qui ducimus.', 1, 0, 'galleries/3.jpg', 1, 'published', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `galleries` VALUES (4, 'Nature', 'Expedita nihil eveniet nam exercitationem. Enim omnis eligendi in facere hic minima quos. Et odit iste qui. Hic repudiandae ea placeat velit qui.', 1, 0, 'galleries/4.jpg', 1, 'published', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `galleries` VALUES (5, 'Morning', 'Ducimus autem consequatur eos nesciunt unde voluptas. Delectus quod provident ut nulla quidem ea. Et et omnis officiis culpa beatae provident quo.', 1, 0, 'galleries/5.jpg', 1, 'published', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `galleries` VALUES (6, 'Photography', 'Dicta natus ea commodi ab. Debitis aut qui qui. Sint aut sit est ex.', 1, 0, 'galleries/6.jpg', 1, 'published', '2024-12-28 04:21:15', '2024-12-28 04:21:15');

-- ----------------------------
-- Table structure for galleries_translations
-- ----------------------------
DROP TABLE IF EXISTS `galleries_translations`;
CREATE TABLE `galleries_translations`  (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `galleries_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  PRIMARY KEY (`lang_code`, `galleries_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of galleries_translations
-- ----------------------------
INSERT INTO `galleries_translations` VALUES ('vi', 1, 'Hoàn hảo', NULL);
INSERT INTO `galleries_translations` VALUES ('vi', 2, 'Ngày mới', NULL);
INSERT INTO `galleries_translations` VALUES ('vi', 3, 'Ngày hạnh phúc', NULL);
INSERT INTO `galleries_translations` VALUES ('vi', 4, 'Thiên nhiên', NULL);
INSERT INTO `galleries_translations` VALUES ('vi', 5, 'Buổi sáng', NULL);
INSERT INTO `galleries_translations` VALUES ('vi', 6, 'Nghệ thuật', NULL);

-- ----------------------------
-- Table structure for gallery_meta
-- ----------------------------
DROP TABLE IF EXISTS `gallery_meta`;
CREATE TABLE `gallery_meta`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `gallery_meta_reference_id_index`(`reference_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 42 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of gallery_meta
-- ----------------------------
INSERT INTO `gallery_meta` VALUES (1, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Quos optio esse natus eum temporibus. Illum at incidunt quia.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Excepturi a nobis quo. Aut voluptas omnis saepe. Quo quo odit rerum exercitationem tempore ut eaque.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quia aliquid ea nihil ut magni earum. Adipisci suscipit omnis ullam. Quisquam natus excepturi omnis doloremque.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Unde et autem eius. Eum quae tempore modi temporibus qui accusamus. Cupiditate expedita eveniet culpa omnis. Qui sunt dolor esse qui et qui incidunt.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Repudiandae repellendus iusto quis commodi. Eos dolores maiores soluta rerum dignissimos autem. Quos aut sapiente laudantium vero est ipsa.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Maxime sunt laudantium et qui est voluptas temporibus. Neque et temporibus quaerat id earum. Quis nisi et consequatur quasi.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Nemo minima et odit voluptas qui error. Sint in ex aliquid accusantium quisquam. Porro tenetur consequatur quod id.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Sint doloremque vel explicabo sit corrupti. Laboriosam consequatur voluptatem occaecati velit incidunt quis eaque autem.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Quia et magnam ab rerum. Eius occaecati qui consequuntur iure explicabo delectus. Est voluptas reiciendis molestiae ipsam voluptas saepe optio.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Omnis ut quo vero maxime corrupti impedit labore. Neque asperiores facere nihil dolore repudiandae et.\"}]', 1, 'Botble\\Gallery\\Models\\Gallery', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `gallery_meta` VALUES (2, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Quos optio esse natus eum temporibus. Illum at incidunt quia.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Excepturi a nobis quo. Aut voluptas omnis saepe. Quo quo odit rerum exercitationem tempore ut eaque.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quia aliquid ea nihil ut magni earum. Adipisci suscipit omnis ullam. Quisquam natus excepturi omnis doloremque.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Unde et autem eius. Eum quae tempore modi temporibus qui accusamus. Cupiditate expedita eveniet culpa omnis. Qui sunt dolor esse qui et qui incidunt.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Repudiandae repellendus iusto quis commodi. Eos dolores maiores soluta rerum dignissimos autem. Quos aut sapiente laudantium vero est ipsa.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Maxime sunt laudantium et qui est voluptas temporibus. Neque et temporibus quaerat id earum. Quis nisi et consequatur quasi.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Nemo minima et odit voluptas qui error. Sint in ex aliquid accusantium quisquam. Porro tenetur consequatur quod id.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Sint doloremque vel explicabo sit corrupti. Laboriosam consequatur voluptatem occaecati velit incidunt quis eaque autem.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Quia et magnam ab rerum. Eius occaecati qui consequuntur iure explicabo delectus. Est voluptas reiciendis molestiae ipsam voluptas saepe optio.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Omnis ut quo vero maxime corrupti impedit labore. Neque asperiores facere nihil dolore repudiandae et.\"}]', 2, 'Botble\\Gallery\\Models\\Gallery', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `gallery_meta` VALUES (3, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Quos optio esse natus eum temporibus. Illum at incidunt quia.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Excepturi a nobis quo. Aut voluptas omnis saepe. Quo quo odit rerum exercitationem tempore ut eaque.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quia aliquid ea nihil ut magni earum. Adipisci suscipit omnis ullam. Quisquam natus excepturi omnis doloremque.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Unde et autem eius. Eum quae tempore modi temporibus qui accusamus. Cupiditate expedita eveniet culpa omnis. Qui sunt dolor esse qui et qui incidunt.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Repudiandae repellendus iusto quis commodi. Eos dolores maiores soluta rerum dignissimos autem. Quos aut sapiente laudantium vero est ipsa.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Maxime sunt laudantium et qui est voluptas temporibus. Neque et temporibus quaerat id earum. Quis nisi et consequatur quasi.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Nemo minima et odit voluptas qui error. Sint in ex aliquid accusantium quisquam. Porro tenetur consequatur quod id.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Sint doloremque vel explicabo sit corrupti. Laboriosam consequatur voluptatem occaecati velit incidunt quis eaque autem.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Quia et magnam ab rerum. Eius occaecati qui consequuntur iure explicabo delectus. Est voluptas reiciendis molestiae ipsam voluptas saepe optio.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Omnis ut quo vero maxime corrupti impedit labore. Neque asperiores facere nihil dolore repudiandae et.\"}]', 3, 'Botble\\Gallery\\Models\\Gallery', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `gallery_meta` VALUES (4, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Quos optio esse natus eum temporibus. Illum at incidunt quia.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Excepturi a nobis quo. Aut voluptas omnis saepe. Quo quo odit rerum exercitationem tempore ut eaque.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quia aliquid ea nihil ut magni earum. Adipisci suscipit omnis ullam. Quisquam natus excepturi omnis doloremque.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Unde et autem eius. Eum quae tempore modi temporibus qui accusamus. Cupiditate expedita eveniet culpa omnis. Qui sunt dolor esse qui et qui incidunt.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Repudiandae repellendus iusto quis commodi. Eos dolores maiores soluta rerum dignissimos autem. Quos aut sapiente laudantium vero est ipsa.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Maxime sunt laudantium et qui est voluptas temporibus. Neque et temporibus quaerat id earum. Quis nisi et consequatur quasi.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Nemo minima et odit voluptas qui error. Sint in ex aliquid accusantium quisquam. Porro tenetur consequatur quod id.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Sint doloremque vel explicabo sit corrupti. Laboriosam consequatur voluptatem occaecati velit incidunt quis eaque autem.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Quia et magnam ab rerum. Eius occaecati qui consequuntur iure explicabo delectus. Est voluptas reiciendis molestiae ipsam voluptas saepe optio.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Omnis ut quo vero maxime corrupti impedit labore. Neque asperiores facere nihil dolore repudiandae et.\"}]', 4, 'Botble\\Gallery\\Models\\Gallery', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `gallery_meta` VALUES (5, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Quos optio esse natus eum temporibus. Illum at incidunt quia.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Excepturi a nobis quo. Aut voluptas omnis saepe. Quo quo odit rerum exercitationem tempore ut eaque.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quia aliquid ea nihil ut magni earum. Adipisci suscipit omnis ullam. Quisquam natus excepturi omnis doloremque.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Unde et autem eius. Eum quae tempore modi temporibus qui accusamus. Cupiditate expedita eveniet culpa omnis. Qui sunt dolor esse qui et qui incidunt.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Repudiandae repellendus iusto quis commodi. Eos dolores maiores soluta rerum dignissimos autem. Quos aut sapiente laudantium vero est ipsa.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Maxime sunt laudantium et qui est voluptas temporibus. Neque et temporibus quaerat id earum. Quis nisi et consequatur quasi.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Nemo minima et odit voluptas qui error. Sint in ex aliquid accusantium quisquam. Porro tenetur consequatur quod id.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Sint doloremque vel explicabo sit corrupti. Laboriosam consequatur voluptatem occaecati velit incidunt quis eaque autem.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Quia et magnam ab rerum. Eius occaecati qui consequuntur iure explicabo delectus. Est voluptas reiciendis molestiae ipsam voluptas saepe optio.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Omnis ut quo vero maxime corrupti impedit labore. Neque asperiores facere nihil dolore repudiandae et.\"}]', 5, 'Botble\\Gallery\\Models\\Gallery', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `gallery_meta` VALUES (6, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Quos optio esse natus eum temporibus. Illum at incidunt quia.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Excepturi a nobis quo. Aut voluptas omnis saepe. Quo quo odit rerum exercitationem tempore ut eaque.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Quia aliquid ea nihil ut magni earum. Adipisci suscipit omnis ullam. Quisquam natus excepturi omnis doloremque.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Unde et autem eius. Eum quae tempore modi temporibus qui accusamus. Cupiditate expedita eveniet culpa omnis. Qui sunt dolor esse qui et qui incidunt.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Repudiandae repellendus iusto quis commodi. Eos dolores maiores soluta rerum dignissimos autem. Quos aut sapiente laudantium vero est ipsa.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Maxime sunt laudantium et qui est voluptas temporibus. Neque et temporibus quaerat id earum. Quis nisi et consequatur quasi.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Nemo minima et odit voluptas qui error. Sint in ex aliquid accusantium quisquam. Porro tenetur consequatur quod id.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Sint doloremque vel explicabo sit corrupti. Laboriosam consequatur voluptatem occaecati velit incidunt quis eaque autem.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Quia et magnam ab rerum. Eius occaecati qui consequuntur iure explicabo delectus. Est voluptas reiciendis molestiae ipsam voluptas saepe optio.\"},{\"img\":\"galleries\\/10.jpg\",\"description\":\"Omnis ut quo vero maxime corrupti impedit labore. Neque asperiores facere nihil dolore repudiandae et.\"}]', 6, 'Botble\\Gallery\\Models\\Gallery', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `gallery_meta` VALUES (7, NULL, 1, 'Botble\\Page\\Models\\Page', '2025-07-30 10:56:40', '2025-07-30 10:56:40');
INSERT INTO `gallery_meta` VALUES (27, NULL, 19, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:54:13', '2025-07-30 15:54:13');
INSERT INTO `gallery_meta` VALUES (29, NULL, 16, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:59:07', '2025-07-30 15:59:07');
INSERT INTO `gallery_meta` VALUES (40, NULL, 14, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:42:56', '2025-08-03 15:42:56');
INSERT INTO `gallery_meta` VALUES (41, NULL, 13, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:48:48', '2025-08-03 15:48:48');

-- ----------------------------
-- Table structure for gallery_meta_translations
-- ----------------------------
DROP TABLE IF EXISTS `gallery_meta_translations`;
CREATE TABLE `gallery_meta_translations`  (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `gallery_meta_id` bigint(20) UNSIGNED NOT NULL,
  `images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  PRIMARY KEY (`lang_code`, `gallery_meta_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for jobs
-- ----------------------------
DROP TABLE IF EXISTS `jobs`;
CREATE TABLE `jobs`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `queue` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` tinyint(3) UNSIGNED NOT NULL,
  `reserved_at` int(10) UNSIGNED NULL DEFAULT NULL,
  `available_at` int(10) UNSIGNED NOT NULL,
  `created_at` int(10) UNSIGNED NOT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `jobs_queue_index`(`queue`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for language_meta
-- ----------------------------
DROP TABLE IF EXISTS `language_meta`;
CREATE TABLE `language_meta`  (
  `lang_meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `lang_meta_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `lang_meta_origin` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`lang_meta_id`) USING BTREE,
  INDEX `language_meta_reference_id_index`(`reference_id`) USING BTREE,
  INDEX `meta_code_index`(`lang_meta_code`) USING BTREE,
  INDEX `meta_origin_index`(`lang_meta_origin`) USING BTREE,
  INDEX `meta_reference_type_index`(`reference_type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 28 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of language_meta
-- ----------------------------
INSERT INTO `language_meta` VALUES (1, 'en_US', '59fba18d8f9337be773352852ca1dd75', 1, 'Botble\\Menu\\Models\\MenuLocation');
INSERT INTO `language_meta` VALUES (2, 'en_US', '35ce35c740dd1cdef5ff3766cb5e279f', 1, 'Botble\\Menu\\Models\\Menu');
INSERT INTO `language_meta` VALUES (3, 'en_US', 'd6631d4298fed3485f48adf34523618d', 2, 'Botble\\Menu\\Models\\Menu');
INSERT INTO `language_meta` VALUES (4, 'vi', '769b7986916ddb1055cbc905d6b14ce6', 2, 'Botble\\Menu\\Models\\MenuLocation');
INSERT INTO `language_meta` VALUES (5, 'vi', '35ce35c740dd1cdef5ff3766cb5e279f', 3, 'Botble\\Menu\\Models\\Menu');
INSERT INTO `language_meta` VALUES (6, 'vi', 'd6631d4298fed3485f48adf34523618d', 4, 'Botble\\Menu\\Models\\Menu');
INSERT INTO `language_meta` VALUES (7, 'en_US', '4240989cce2c8f5297f2551851556988', 1, 'Botble\\PostCollection\\Models\\PostCollection');
INSERT INTO `language_meta` VALUES (8, 'en_US', 'e1ab72db5b6c6556760b8de2efff0c90', 2, 'Botble\\PostCollection\\Models\\PostCollection');
INSERT INTO `language_meta` VALUES (9, 'vi', '8d66bf7d49f18516a2a09c2b505ea73d', 3, 'Botble\\PostCollection\\Models\\PostCollection');
INSERT INTO `language_meta` VALUES (10, 'vi', 'c87f0209e04168a4ef8c46871f1de9bd', 4, 'Botble\\PostCollection\\Models\\PostCollection');
INSERT INTO `language_meta` VALUES (11, 'en_US', 'f9a2fae2daa55fcc4aba8031489297e9', 1, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (12, 'en_US', '7282a4d32ad044910028a0282ccaab80', 5, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (13, 'en_US', '9cad742e68e3ce30ccab940052011974', 6, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (14, 'en_US', 'a787ab729bf4644aa32789047fb5f100', 7, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (15, 'en_US', 'f34a7efdc4194ca56a1c35d3a254e627', 8, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (16, 'en_US', 'e076b427a1246c86cc68e5e797126580', 9, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (17, 'en_US', '31d819a26d7f0f0158079c5af8b3f400', 10, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (18, 'en_US', 'fdaed5595dabf9cb965298ddc188d0ab', 11, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (19, 'en_US', '747a0d0fe4bcef888dca56987243b7c6', 12, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (20, 'en_US', 'd77491be54f5e6c3e1ab24ca4b2a4e28', 13, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (21, 'en_US', 'bd1cd58c69a6bfe9edfb002585429d0f', 14, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (22, 'en_US', '7f2b154392f1b43551c148203901bacb', 15, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (23, 'en_US', '488d157fe39ada6ef05692b23b945a5e', 16, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (24, 'en_US', '3ba82affc6e28fd0272562b466ecbf4f', 17, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (25, 'en_US', '7bc691be441b7f636ad461dc1bb89b46', 18, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (26, 'en_US', 'f881cab880028fe0215438f71aae4c45', 19, 'Botble\\Menu\\Models\\MenuNode');
INSERT INTO `language_meta` VALUES (27, 'en_US', 'b8c510c478ac436cb7c5f92d1eaefae0', 20, 'Botble\\Menu\\Models\\MenuNode');

-- ----------------------------
-- Table structure for languages
-- ----------------------------
DROP TABLE IF EXISTS `languages`;
CREATE TABLE `languages`  (
  `lang_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `lang_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_locale` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_flag` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `lang_is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `lang_order` int(11) NOT NULL DEFAULT 0,
  `lang_is_rtl` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  PRIMARY KEY (`lang_id`) USING BTREE,
  INDEX `lang_locale_index`(`lang_locale`) USING BTREE,
  INDEX `lang_code_index`(`lang_code`) USING BTREE,
  INDEX `lang_is_default_index`(`lang_is_default`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of languages
-- ----------------------------
INSERT INTO `languages` VALUES (1, 'English', 'en', 'en_US', 'us', 1, 0, 0);

-- ----------------------------
-- Table structure for media_files
-- ----------------------------
DROP TABLE IF EXISTS `media_files`;
CREATE TABLE `media_files`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `alt` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `folder_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `mime_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `size` int(11) NOT NULL,
  `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `deleted_at` timestamp(0) NULL DEFAULT NULL,
  `visibility` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'public',
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `media_files_user_id_index`(`user_id`) USING BTREE,
  INDEX `media_files_index`(`folder_id`, `user_id`, `created_at`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 73 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of media_files
-- ----------------------------
INSERT INTO `media_files` VALUES (1, 0, 'image-1', 'image-1', 1, 'image/jpeg', 14506, 'banners/image-1.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (2, 0, 'image-2', 'image-2', 1, 'image/jpeg', 8220, 'banners/image-2.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (3, 0, 'image-3', 'image-3', 1, 'image/jpeg', 6445, 'banners/image-3.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (4, 0, 'image-4', 'image-4', 1, 'image/jpeg', 9763, 'banners/image-4.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (5, 0, '1', '1', 2, 'image/jpeg', 40741, 'galleries/1.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (6, 0, '10', '10', 2, 'image/jpeg', 91805, 'galleries/10.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (7, 0, '2', '2', 2, 'image/jpeg', 41198, 'galleries/2.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (8, 0, '3', '3', 2, 'image/jpeg', 63867, 'galleries/3.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (9, 0, '4', '4', 2, 'image/jpeg', 57483, 'galleries/4.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (10, 0, '5', '5', 2, 'image/jpeg', 66669, 'galleries/5.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (11, 0, '6', '6', 2, 'image/jpeg', 39548, 'galleries/6.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (12, 0, '7', '7', 2, 'image/jpeg', 39483, 'galleries/7.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (13, 0, '8', '8', 2, 'image/jpeg', 56687, 'galleries/8.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (14, 0, '9', '9', 2, 'image/jpeg', 67124, 'galleries/9.jpg', '[]', '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL, 'public');
INSERT INTO `media_files` VALUES (15, 0, 'news-1', 'news-1', 3, 'image/jpeg', 68353, 'news/news-1.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (16, 0, 'news-10', 'news-10', 3, 'image/jpeg', 40388, 'news/news-10.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (17, 0, 'news-11', 'news-11', 3, 'image/jpeg', 76419, 'news/news-11.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (18, 0, 'news-12', 'news-12', 3, 'image/jpeg', 30432, 'news/news-12.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (19, 0, 'news-13', 'news-13', 3, 'image/jpeg', 101509, 'news/news-13.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (20, 0, 'news-14', 'news-14', 3, 'image/jpeg', 42800, 'news/news-14.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (21, 0, 'news-15', 'news-15', 3, 'image/jpeg', 96325, 'news/news-15.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (22, 0, 'news-16', 'news-16', 3, 'image/jpeg', 84016, 'news/news-16.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (23, 0, 'news-17', 'news-17', 3, 'image/jpeg', 37533, 'news/news-17.jpg', '[]', '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL, 'public');
INSERT INTO `media_files` VALUES (24, 0, 'news-18', 'news-18', 3, 'image/jpeg', 32346, 'news/news-18.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (25, 0, 'news-19', 'news-19', 3, 'image/jpeg', 45310, 'news/news-19.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (26, 0, 'news-2', 'news-2', 3, 'image/jpeg', 47485, 'news/news-2.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (27, 0, 'news-20', 'news-20', 3, 'image/jpeg', 36824, 'news/news-20.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (28, 0, 'news-21', 'news-21', 3, 'image/jpeg', 60823, 'news/news-21.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (29, 0, 'news-22', 'news-22', 3, 'image/jpeg', 36730, 'news/news-22.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (30, 0, 'news-23', 'news-23', 3, 'image/jpeg', 26646, 'news/news-23.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (31, 0, 'news-24', 'news-24', 3, 'image/jpeg', 15769, 'news/news-24.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (32, 0, 'news-3', 'news-3', 3, 'image/jpeg', 37002, 'news/news-3.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (33, 0, 'news-4', 'news-4', 3, 'image/jpeg', 77497, 'news/news-4.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (34, 0, 'news-5', 'news-5', 3, 'image/jpeg', 75048, 'news/news-5.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (35, 0, 'news-6', 'news-6', 3, 'image/jpeg', 44854, 'news/news-6.jpg', '[]', '2024-12-28 04:21:16', '2024-12-28 04:21:16', NULL, 'public');
INSERT INTO `media_files` VALUES (36, 0, 'news-7', 'news-7', 3, 'image/jpeg', 80934, 'news/news-7.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (37, 0, 'news-8', 'news-8', 3, 'image/jpeg', 53841, 'news/news-8.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (38, 0, 'news-9', 'news-9', 3, 'image/jpeg', 42449, 'news/news-9.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (39, 0, 'thumbnail-1', 'thumbnail-1', 3, 'image/jpeg', 48070, 'news/thumbnail-1.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (40, 0, 'thumbnail-2', 'thumbnail-2', 3, 'image/jpeg', 40499, 'news/thumbnail-2.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (41, 0, 'thumbnail-3', 'thumbnail-3', 3, 'image/jpeg', 41661, 'news/thumbnail-3.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (42, 0, 'thumbnail-4', 'thumbnail-4', 3, 'image/jpeg', 24393, 'news/thumbnail-4.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (43, 0, 'thumbnail-5', 'thumbnail-5', 3, 'image/jpeg', 39656, 'news/thumbnail-5.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (44, 0, 'thumbnail-6', 'thumbnail-6', 3, 'image/jpeg', 49720, 'news/thumbnail-6.jpg', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (45, 0, 'video1', 'video1', 4, 'video/mp4', 6378345, 'videos/video1.mp4', '[]', '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL, 'public');
INSERT INTO `media_files` VALUES (46, 0, '1', '1', 5, 'image/jpeg', 8581, 'members/1.jpg', '[]', '2024-12-28 04:21:18', '2024-12-28 04:21:18', NULL, 'public');
INSERT INTO `media_files` VALUES (47, 0, '2', '2', 5, 'image/jpeg', 14257, 'members/2.jpg', '[]', '2024-12-28 04:21:18', '2024-12-28 04:21:18', NULL, 'public');
INSERT INTO `media_files` VALUES (48, 0, '3', '3', 5, 'image/jpeg', 14702, 'members/3.jpg', '[]', '2024-12-28 04:21:18', '2024-12-28 04:21:18', NULL, 'public');
INSERT INTO `media_files` VALUES (49, 0, '4', '4', 5, 'image/jpeg', 19699, 'members/4.jpg', '[]', '2024-12-28 04:21:18', '2024-12-28 04:21:18', NULL, 'public');
INSERT INTO `media_files` VALUES (50, 0, '5', '5', 5, 'image/jpeg', 10260, 'members/5.jpg', '[]', '2024-12-28 04:21:18', '2024-12-28 04:21:18', NULL, 'public');
INSERT INTO `media_files` VALUES (51, 0, '10', '10', 6, 'image/jpeg', 20004, 'authors/10.jpg', '[]', '2024-12-28 04:21:21', '2024-12-28 04:21:21', NULL, 'public');
INSERT INTO `media_files` VALUES (52, 0, '6', '6', 6, 'image/jpeg', 8476, 'authors/6.jpg', '[]', '2024-12-28 04:21:21', '2024-12-28 04:21:21', NULL, 'public');
INSERT INTO `media_files` VALUES (53, 0, '7', '7', 6, 'image/jpeg', 14388, 'authors/7.jpg', '[]', '2024-12-28 04:21:21', '2024-12-28 04:21:21', NULL, 'public');
INSERT INTO `media_files` VALUES (54, 0, '8', '8', 6, 'image/jpeg', 14340, 'authors/8.jpg', '[]', '2024-12-28 04:21:21', '2024-12-28 04:21:21', NULL, 'public');
INSERT INTO `media_files` VALUES (55, 0, '9', '9', 6, 'image/jpeg', 4396, 'authors/9.jpg', '[]', '2024-12-28 04:21:21', '2024-12-28 04:21:21', NULL, 'public');
INSERT INTO `media_files` VALUES (56, 0, 'favicon', 'favicon', 7, 'image/png', 1260, 'general/favicon.png', '[]', '2024-12-28 04:21:23', '2024-12-28 04:21:23', NULL, 'public');
INSERT INTO `media_files` VALUES (57, 0, 'img-loading', 'img-loading', 7, 'image/jpeg', 1364, 'general/img-loading.jpg', '[]', '2024-12-28 04:21:24', '2024-12-28 04:21:24', NULL, 'public');
INSERT INTO `media_files` VALUES (58, 0, 'logo-mobile', 'logo-mobile', 7, 'image/png', 2562, 'general/logo-mobile.png', '[]', '2024-12-28 04:21:24', '2024-12-28 04:21:24', NULL, 'public');
INSERT INTO `media_files` VALUES (59, 0, 'logo-tablet', 'logo-tablet', 7, 'image/png', 3540, 'general/logo-tablet.png', '[]', '2024-12-28 04:21:24', '2024-12-28 04:21:24', NULL, 'public');
INSERT INTO `media_files` VALUES (60, 0, 'logo-white', 'logo-white', 7, 'image/png', 3703, 'general/logo-white.png', '[]', '2024-12-28 04:21:24', '2024-12-28 04:21:24', NULL, 'public');
INSERT INTO `media_files` VALUES (61, 0, 'logo', 'logo', 7, 'image/png', 5187, 'general/logo.png', '[]', '2024-12-28 04:21:24', '2024-12-28 04:21:24', NULL, 'public');
INSERT INTO `media_files` VALUES (62, 0, 'screenshot', 'screenshot', 7, 'image/png', 565891, 'general/screenshot.png', '[]', '2024-12-28 04:21:24', '2024-12-28 04:21:24', NULL, 'public');
INSERT INTO `media_files` VALUES (63, 1, 'st john the evangelist (200 x 100 px)', 'st john the evangelist (200 x 100 px)', 0, 'image/jpeg', 32326, 'st-john-the-evangelist-200-x-100-px.jpg', '[]', '2025-07-30 10:20:25', '2025-07-30 10:20:25', NULL, 'public');
INSERT INTO `media_files` VALUES (64, 1, 'silhouette-of-cross-against-colorful-sunset-sky-video', 'silhouette-of-cross-against-colorful-sunset-sky-video', 0, 'image/jpeg', 19478, 'silhouette-of-cross-against-colorful-sunset-sky-video.jpg', '[]', '2025-07-30 14:03:35', '2025-07-30 14:03:35', NULL, 'public');
INSERT INTO `media_files` VALUES (65, 1, '11731', '11731', 0, 'image/jpeg', 48406, '11731.jpg', '[]', '2025-07-30 14:08:44', '2025-07-30 14:08:44', NULL, 'public');
INSERT INTO `media_files` VALUES (66, 1, '369090_jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg_1920x1227_h', '369090_jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg_1920x1227_h', 0, 'image/webp', 35994, '369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp', '[]', '2025-07-30 14:47:19', '2025-07-30 14:47:19', NULL, 'public');
INSERT INTO `media_files` VALUES (67, 1, 'windrush_service_at_manchester_cathedral2', 'windrush_service_at_manchester_cathedral2', 0, 'image/jpeg', 180225, 'windrush-service-at-manchester-cathedral2.jpg', '[]', '2025-07-30 15:04:54', '2025-07-30 15:04:54', NULL, 'public');
INSERT INTO `media_files` VALUES (68, 1, 'istockphoto-1191647689-612x612', 'istockphoto-1191647689-612x612', 0, 'image/jpeg', 35119, 'istockphoto-1191647689-612x612.jpg', '[]', '2025-07-30 15:51:58', '2025-07-30 15:51:58', NULL, 'public');
INSERT INTO `media_files` VALUES (69, 1, 'WhatsApp Image 2025-07-09 at 10.01.44', 'WhatsApp Image 2025-07-09 at 10.01.44', 0, 'image/jpeg', 66128, 'whatsapp-image-2025-07-09-at-100144.jpeg', '[]', '2025-07-30 15:53:48', '2025-07-30 15:53:48', NULL, 'public');
INSERT INTO `media_files` VALUES (70, 1, 'a4d89a47c38845c28f7ee323da16ebad', 'a4d89a47c38845c28f7ee323da16ebad', 0, 'image/webp', 38778, 'a4d89a47c38845c28f7ee323da16ebad.webp', '[]', '2025-07-31 11:34:30', '2025-07-31 11:34:30', NULL, 'public');
INSERT INTO `media_files` VALUES (71, 1, 'hqdefault', 'hqdefault', 0, 'image/jpeg', 24185, 'hqdefault.jpg?v=1754235732', '[]', '2025-08-03 15:41:47', '2025-08-03 15:42:12', NULL, 'public');
INSERT INTO `media_files` VALUES (72, 1, 'hqdefault-1', 'hqdefault-1', 0, 'image/jpeg', 24185, 'hqdefault-1.jpg', '[]', '2025-08-03 15:42:39', '2025-08-03 15:42:39', NULL, 'public');

-- ----------------------------
-- Table structure for media_folders
-- ----------------------------
DROP TABLE IF EXISTS `media_folders`;
CREATE TABLE `media_folders`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `color` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `deleted_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `media_folders_user_id_index`(`user_id`) USING BTREE,
  INDEX `media_folders_index`(`parent_id`, `user_id`, `created_at`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of media_folders
-- ----------------------------
INSERT INTO `media_folders` VALUES (1, 0, 'banners', NULL, 'banners', 0, '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL);
INSERT INTO `media_folders` VALUES (2, 0, 'galleries', NULL, 'galleries', 0, '2024-12-28 04:21:14', '2024-12-28 04:21:14', NULL);
INSERT INTO `media_folders` VALUES (3, 0, 'news', NULL, 'news', 0, '2024-12-28 04:21:15', '2024-12-28 04:21:15', NULL);
INSERT INTO `media_folders` VALUES (4, 0, 'videos', NULL, 'videos', 0, '2024-12-28 04:21:17', '2024-12-28 04:21:17', NULL);
INSERT INTO `media_folders` VALUES (5, 0, 'members', NULL, 'members', 0, '2024-12-28 04:21:18', '2024-12-28 04:21:18', NULL);
INSERT INTO `media_folders` VALUES (6, 0, 'authors', NULL, 'authors', 0, '2024-12-28 04:21:21', '2024-12-28 04:21:21', NULL);
INSERT INTO `media_folders` VALUES (7, 0, 'general', NULL, 'general', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23', NULL);

-- ----------------------------
-- Table structure for media_settings
-- ----------------------------
DROP TABLE IF EXISTS `media_settings`;
CREATE TABLE `media_settings`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `key` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `media_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for member_activity_logs
-- ----------------------------
DROP TABLE IF EXISTS `member_activity_logs`;
CREATE TABLE `member_activity_logs`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `action` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `reference_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `reference_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `member_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `member_activity_logs_member_id_index`(`member_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for member_password_resets
-- ----------------------------
DROP TABLE IF EXISTS `member_password_resets`;
CREATE TABLE `member_password_resets`  (
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  INDEX `member_password_resets_email_index`(`email`) USING BTREE,
  INDEX `member_password_resets_token_index`(`token`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for members
-- ----------------------------
DROP TABLE IF EXISTS `members`;
CREATE TABLE `members`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `first_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `gender` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `dob` date NULL DEFAULT NULL,
  `phone` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `confirmed_at` datetime(0) NULL DEFAULT NULL,
  `email_verify_token` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `favorite_posts` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `bookmark_posts` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `members_email_unique`(`email`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of members
-- ----------------------------
INSERT INTO `members` VALUES (1, 'John', 'Smith', 'So they began solemnly dancing round and round goes the clock in a louder tone. \'ARE you to set.', NULL, 'user@thesky9.com', '$2y$12$qL2NfyzpyM8Nhtl/vm.8vOu7mN7Y26SNbKR1r91z9xAat1p/eBe7.', 49, '2018-07-10', '+1 (208) 527-5533', '2024-12-28 04:21:18', NULL, NULL, '2024-12-28 04:21:18', '2024-12-28 04:21:18', 'published', NULL, NULL);

-- ----------------------------
-- Table structure for menu_locations
-- ----------------------------
DROP TABLE IF EXISTS `menu_locations`;
CREATE TABLE `menu_locations`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `menu_id` bigint(20) UNSIGNED NOT NULL,
  `location` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `menu_locations_menu_id_created_at_index`(`menu_id`, `created_at`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of menu_locations
-- ----------------------------
INSERT INTO `menu_locations` VALUES (1, 1, 'main-menu', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_locations` VALUES (2, 3, 'main-menu', '2024-12-28 04:21:23', '2024-12-28 04:21:23');

-- ----------------------------
-- Table structure for menu_nodes
-- ----------------------------
DROP TABLE IF EXISTS `menu_nodes`;
CREATE TABLE `menu_nodes`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `menu_id` bigint(20) UNSIGNED NOT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `reference_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `reference_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `icon_font` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `position` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `css_class` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `target` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
  `has_child` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `menu_nodes_menu_id_index`(`menu_id`) USING BTREE,
  INDEX `menu_nodes_parent_id_index`(`parent_id`) USING BTREE,
  INDEX `reference_id`(`reference_id`) USING BTREE,
  INDEX `reference_type`(`reference_type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 46 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of menu_nodes
-- ----------------------------
INSERT INTO `menu_nodes` VALUES (1, 1, 0, 0, NULL, '/', '', 0, 'Home', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:01');
INSERT INTO `menu_nodes` VALUES (5, 1, 0, 0, NULL, '/galleries', '', 2, 'Events', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:01');
INSERT INTO `menu_nodes` VALUES (6, 1, 0, 6, 'Botble\\Page\\Models\\Page', '/en/category-grid', '', 1, 'About Us', '', '_self', 1, '2024-12-28 04:21:23', '2025-07-30 15:14:01');
INSERT INTO `menu_nodes` VALUES (7, 1, 6, 5, 'Botble\\Page\\Models\\Page', '/en/category-list', '', 0, 'About the Church', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:01');
INSERT INTO `menu_nodes` VALUES (8, 1, 6, 6, 'Botble\\Page\\Models\\Page', '/en/category-grid', '', 1, 'Our Mission', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:01');
INSERT INTO `menu_nodes` VALUES (9, 1, 6, 7, 'Botble\\Page\\Models\\Page', '/en/category-metro', '', 2, 'Metro', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:01');
INSERT INTO `menu_nodes` VALUES (10, 1, 0, 1, 'Botble\\Blog\\Models\\Post', '/en/1753884137', '', 3, 'Guilds & Associations', '', '_self', 1, '2024-12-28 04:21:23', '2025-07-30 15:14:01');
INSERT INTO `menu_nodes` VALUES (11, 1, 10, 1, 'Botble\\Blog\\Models\\Post', '/en/1753884137', '', 0, 'Choir', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:02');
INSERT INTO `menu_nodes` VALUES (12, 1, 10, 2, 'Botble\\Blog\\Models\\Post', '/en/the-churchs-mission-and-ambitions', '', 1, 'Full top', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:02');
INSERT INTO `menu_nodes` VALUES (13, 1, 10, 3, 'Botble\\Blog\\Models\\Post', '/en/a-christian-presence-in-your-community', '', 3, 'Inline', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:02');
INSERT INTO `menu_nodes` VALUES (15, 1, 0, 8, 'Botble\\Page\\Models\\Page', '/en/contact', '', 4, 'Contact', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:02');
INSERT INTO `menu_nodes` VALUES (17, 1, 10, 10, 'Botble\\Page\\Models\\Page', '/en/cookie-policy', '', 2, 'Cookie Policy', '', '_self', 0, '2024-12-28 04:21:23', '2025-07-30 15:14:02');
INSERT INTO `menu_nodes` VALUES (21, 2, 0, NULL, NULL, '/', NULL, 0, 'Homepage', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (22, 2, 0, 8, 'Botble\\Page\\Models\\Page', '/contact', NULL, 0, 'Contact', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (23, 2, 0, 4, 'Botble\\Page\\Models\\Page', '/blog', NULL, 0, 'Blog', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (24, 2, 0, NULL, NULL, '/galleries', NULL, 0, 'Galleries', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (25, 3, 0, NULL, NULL, '/', NULL, 0, 'Trang chủ', NULL, '_self', 1, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (26, 3, 25, NULL, NULL, '/', NULL, 0, 'Trang chủ mặc định', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (27, 3, 25, NULL, NULL, '/home-2?header=style-2', NULL, 0, 'Trang chủ 2', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (28, 3, 25, NULL, NULL, '/home-3?header=style-3', NULL, 0, 'Trang chủ 3', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (29, 3, 0, NULL, NULL, '/galleries', NULL, 0, 'Thư viện ảnh', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (30, 3, 0, 6, 'Botble\\Page\\Models\\Page', '/category-grid', NULL, 0, 'Danh mục', NULL, '_self', 1, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (31, 3, 30, 5, 'Botble\\Page\\Models\\Page', '/category-list', NULL, 0, 'Style cột', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (32, 3, 30, 6, 'Botble\\Page\\Models\\Page', '/category-grid', NULL, 0, 'Style danh sách', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (33, 3, 30, 7, 'Botble\\Page\\Models\\Page', '/category-metro', NULL, 0, 'Style danh sách 2', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (34, 3, 0, 1, 'Botble\\Blog\\Models\\Post', '/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas', NULL, 0, 'Bài viết', NULL, '_self', 1, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (35, 3, 34, 1, 'Botble\\Blog\\Models\\Post', '/this-year-enjoy-the-color-of-festival-with-amazing-holi-gifts-ideas', NULL, 0, 'Default', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (36, 3, 34, 2, 'Botble\\Blog\\Models\\Post', '/the-world-caters-to-average-people-and-mediocre-lifestyles', NULL, 0, 'Full top', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (37, 3, 34, 3, 'Botble\\Blog\\Models\\Post', '/not-a-bit-of-hesitation-you-better-think-twice', NULL, 0, 'Inline', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (38, 3, 0, 9, 'Botble\\Page\\Models\\Page', '/about-us', NULL, 0, 'Liên hệ', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (39, 3, 0, 8, 'Botble\\Page\\Models\\Page', '/contact', NULL, 0, 'Về chúng tôi', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (40, 4, 0, NULL, NULL, '/', NULL, 0, 'Trang chủ', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (41, 4, 0, 8, 'Botble\\Page\\Models\\Page', '/contact', NULL, 0, 'Liên hệ', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (42, 4, 0, 4, 'Botble\\Page\\Models\\Page', '/blog', NULL, 0, 'Tin tức', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menu_nodes` VALUES (43, 4, 0, NULL, NULL, '/galleries', NULL, 0, 'Thư viện ảnh', NULL, '_self', 0, '2024-12-28 04:21:23', '2024-12-28 04:21:23');

-- ----------------------------
-- Table structure for menus
-- ----------------------------
DROP TABLE IF EXISTS `menus`;
CREATE TABLE `menus`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `menus_slug_unique`(`slug`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of menus
-- ----------------------------
INSERT INTO `menus` VALUES (1, 'Main menu', 'main-menu', 'published', '2024-12-28 04:21:23', '2025-07-30 15:14:00');
INSERT INTO `menus` VALUES (2, 'Quick links', 'quick-links', 'published', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menus` VALUES (3, 'Menu chính', 'menu-chinh', 'published', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `menus` VALUES (4, 'Liên kết', 'lien-ket', 'published', '2024-12-28 04:21:23', '2024-12-28 04:21:23');

-- ----------------------------
-- Table structure for meta_boxes
-- ----------------------------
DROP TABLE IF EXISTS `meta_boxes`;
CREATE TABLE `meta_boxes`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `meta_boxes_reference_id_index`(`reference_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 138 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of meta_boxes
-- ----------------------------
INSERT INTO `meta_boxes` VALUES (1, 'layout', '[\"default\"]', 1, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `meta_boxes` VALUES (2, 'time_to_read', '[\"9\"]', 1, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 13:56:51');
INSERT INTO `meta_boxes` VALUES (3, 'comment_status', '[\"1\"]', 1, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 13:56:51');
INSERT INTO `meta_boxes` VALUES (4, 'layout', '[\"top-full\"]', 2, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `meta_boxes` VALUES (5, 'time_to_read', '[\"1\"]', 2, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 14:24:53');
INSERT INTO `meta_boxes` VALUES (6, 'comment_status', '[\"1\"]', 2, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 14:48:33');
INSERT INTO `meta_boxes` VALUES (7, 'layout', '[\"inline\"]', 3, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `meta_boxes` VALUES (8, 'time_to_read', '[\"6\"]', 3, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 15:03:35');
INSERT INTO `meta_boxes` VALUES (9, 'comment_status', '[\"0\"]', 3, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 15:16:27');
INSERT INTO `meta_boxes` VALUES (13, 'video_upload_id', '[\"videos\\/video1.mp4\"]', 5, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `meta_boxes` VALUES (14, 'time_to_read', '[\"13\"]', 5, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 14:27:00');
INSERT INTO `meta_boxes` VALUES (15, 'comment_status', '[\"1\"]', 5, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 14:27:00');
INSERT INTO `meta_boxes` VALUES (25, 'time_to_read', '[\"8\"]', 10, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 14:28:09');
INSERT INTO `meta_boxes` VALUES (26, 'comment_status', '[\"1\"]', 10, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:17', '2025-07-30 14:28:09');
INSERT INTO `meta_boxes` VALUES (31, 'time_to_read', '[\"6\"]', 13, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2025-08-03 15:48:47');
INSERT INTO `meta_boxes` VALUES (32, 'comment_status', '[1]', 13, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2024-12-28 04:21:18');
INSERT INTO `meta_boxes` VALUES (33, 'video_link', '[\"https:\\/\\/player.vimeo.com\\/video\\/580799106?h=a8eb717af9\"]', 14, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2024-12-28 04:21:18');
INSERT INTO `meta_boxes` VALUES (34, 'time_to_read', '[\"1\"]', 14, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2025-08-03 15:35:40');
INSERT INTO `meta_boxes` VALUES (35, 'comment_status', '[1]', 14, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2024-12-28 04:21:18');
INSERT INTO `meta_boxes` VALUES (38, 'time_to_read', '[\"2\"]', 16, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2025-07-30 15:55:26');
INSERT INTO `meta_boxes` VALUES (39, 'comment_status', '[\"1\"]', 16, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2025-07-30 15:55:26');
INSERT INTO `meta_boxes` VALUES (44, 'time_to_read', '[\"18\"]', 19, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2025-07-30 15:54:12');
INSERT INTO `meta_boxes` VALUES (45, 'comment_status', '[\"1\"]', 19, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2025-07-30 15:54:12');
INSERT INTO `meta_boxes` VALUES (46, 'time_to_read', '[\"15\"]', 20, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2025-07-30 15:52:09');
INSERT INTO `meta_boxes` VALUES (47, 'comment_status', '[\"1\"]', 20, 'Botble\\Blog\\Models\\Post', '2024-12-28 04:21:18', '2025-07-30 15:52:09');
INSERT INTO `meta_boxes` VALUES (48, 'seo_meta', '[{\"index\":\"index\"}]', 1, 'Botble\\Page\\Models\\Page', '2025-07-30 10:56:40', '2025-07-30 10:56:40');
INSERT INTO `meta_boxes` VALUES (49, 'video_link', '[null]', 1, 'Botble\\Blog\\Models\\Post', '2025-07-30 13:56:51', '2025-07-30 13:56:51');
INSERT INTO `meta_boxes` VALUES (50, 'video_embed_code', '[null]', 1, 'Botble\\Blog\\Models\\Post', '2025-07-30 13:56:51', '2025-07-30 13:56:51');
INSERT INTO `meta_boxes` VALUES (51, 'video_upload_id', '[null]', 1, 'Botble\\Blog\\Models\\Post', '2025-07-30 13:56:51', '2025-07-30 13:56:51');
INSERT INTO `meta_boxes` VALUES (52, 'show_toc_in_content', '[\"yes\"]', 1, 'Botble\\Blog\\Models\\Post', '2025-07-30 13:56:52', '2025-07-30 13:56:52');
INSERT INTO `meta_boxes` VALUES (53, 'seo_meta', '[{\"index\":\"index\"}]', 1, 'Botble\\Blog\\Models\\Post', '2025-07-30 13:56:52', '2025-07-30 13:56:52');
INSERT INTO `meta_boxes` VALUES (54, 'video_link', '[null]', 2, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:24:53', '2025-07-30 14:24:53');
INSERT INTO `meta_boxes` VALUES (55, 'video_embed_code', '[null]', 2, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:24:53', '2025-07-30 14:24:53');
INSERT INTO `meta_boxes` VALUES (56, 'video_upload_id', '[null]', 2, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:24:53', '2025-07-30 14:24:53');
INSERT INTO `meta_boxes` VALUES (57, 'show_toc_in_content', '[\"yes\"]', 2, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:24:53', '2025-07-30 14:24:53');
INSERT INTO `meta_boxes` VALUES (58, 'seo_meta', '[{\"index\":\"index\"}]', 2, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:24:53', '2025-07-30 14:24:53');
INSERT INTO `meta_boxes` VALUES (65, 'layout', '[null]', 5, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:27:00', '2025-07-30 14:27:00');
INSERT INTO `meta_boxes` VALUES (66, 'video_link', '[null]', 5, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:27:00', '2025-07-30 14:27:00');
INSERT INTO `meta_boxes` VALUES (67, 'video_embed_code', '[null]', 5, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:27:00', '2025-07-30 14:27:00');
INSERT INTO `meta_boxes` VALUES (68, 'show_toc_in_content', '[\"yes\"]', 5, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:27:00', '2025-07-30 14:27:00');
INSERT INTO `meta_boxes` VALUES (69, 'seo_meta', '[{\"index\":\"index\"}]', 5, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:27:00', '2025-07-30 14:27:00');
INSERT INTO `meta_boxes` VALUES (70, 'layout', '[null]', 10, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:28:09', '2025-07-30 14:28:09');
INSERT INTO `meta_boxes` VALUES (71, 'video_link', '[null]', 10, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:28:09', '2025-07-30 14:28:09');
INSERT INTO `meta_boxes` VALUES (72, 'video_embed_code', '[null]', 10, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:28:10', '2025-07-30 14:28:10');
INSERT INTO `meta_boxes` VALUES (73, 'video_upload_id', '[null]', 10, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:28:10', '2025-07-30 14:28:10');
INSERT INTO `meta_boxes` VALUES (74, 'show_toc_in_content', '[\"yes\"]', 10, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:28:10', '2025-07-30 14:28:10');
INSERT INTO `meta_boxes` VALUES (75, 'seo_meta', '[{\"index\":\"index\"}]', 10, 'Botble\\Blog\\Models\\Post', '2025-07-30 14:28:10', '2025-07-30 14:28:10');
INSERT INTO `meta_boxes` VALUES (94, 'video_link', '[null]', 3, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:03:35', '2025-07-30 15:03:35');
INSERT INTO `meta_boxes` VALUES (95, 'video_embed_code', '[null]', 3, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:03:35', '2025-07-30 15:03:35');
INSERT INTO `meta_boxes` VALUES (96, 'video_upload_id', '[null]', 3, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:03:35', '2025-07-30 15:03:35');
INSERT INTO `meta_boxes` VALUES (97, 'show_toc_in_content', '[\"no\"]', 3, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:03:35', '2025-07-30 15:17:49');
INSERT INTO `meta_boxes` VALUES (98, 'seo_meta', '[{\"index\":\"index\"}]', 3, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:03:35', '2025-07-30 15:03:35');
INSERT INTO `meta_boxes` VALUES (99, 'layout', '[null]', 20, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:52:09', '2025-07-30 15:52:09');
INSERT INTO `meta_boxes` VALUES (100, 'video_link', '[null]', 20, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:52:09', '2025-07-30 15:52:09');
INSERT INTO `meta_boxes` VALUES (101, 'video_embed_code', '[null]', 20, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:52:09', '2025-07-30 15:52:09');
INSERT INTO `meta_boxes` VALUES (102, 'video_upload_id', '[null]', 20, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:52:09', '2025-07-30 15:52:09');
INSERT INTO `meta_boxes` VALUES (103, 'show_toc_in_content', '[\"yes\"]', 20, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:52:09', '2025-07-30 15:52:09');
INSERT INTO `meta_boxes` VALUES (104, 'seo_meta', '[{\"index\":\"index\"}]', 20, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:52:09', '2025-07-30 15:52:09');
INSERT INTO `meta_boxes` VALUES (105, 'layout', '[null]', 19, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:54:12', '2025-07-30 15:54:12');
INSERT INTO `meta_boxes` VALUES (106, 'video_link', '[null]', 19, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:54:12', '2025-07-30 15:54:12');
INSERT INTO `meta_boxes` VALUES (107, 'video_embed_code', '[null]', 19, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:54:12', '2025-07-30 15:54:12');
INSERT INTO `meta_boxes` VALUES (108, 'video_upload_id', '[null]', 19, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:54:12', '2025-07-30 15:54:12');
INSERT INTO `meta_boxes` VALUES (109, 'show_toc_in_content', '[\"yes\"]', 19, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:54:12', '2025-07-30 15:54:12');
INSERT INTO `meta_boxes` VALUES (110, 'seo_meta', '[{\"index\":\"index\"}]', 19, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:54:13', '2025-07-30 15:54:13');
INSERT INTO `meta_boxes` VALUES (111, 'layout', '[\"top-full\"]', 16, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:55:26', '2025-07-30 15:59:07');
INSERT INTO `meta_boxes` VALUES (112, 'video_link', '[null]', 16, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:55:26', '2025-07-30 15:55:26');
INSERT INTO `meta_boxes` VALUES (113, 'video_embed_code', '[null]', 16, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:55:26', '2025-07-30 15:55:26');
INSERT INTO `meta_boxes` VALUES (114, 'video_upload_id', '[null]', 16, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:55:26', '2025-07-30 15:55:26');
INSERT INTO `meta_boxes` VALUES (115, 'show_toc_in_content', '[\"yes\"]', 16, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:55:26', '2025-07-30 15:55:26');
INSERT INTO `meta_boxes` VALUES (116, 'seo_meta', '[{\"index\":\"index\"}]', 16, 'Botble\\Blog\\Models\\Post', '2025-07-30 15:55:26', '2025-07-30 15:55:26');
INSERT INTO `meta_boxes` VALUES (117, 'image', '[null]', 1, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:29:48', '2025-08-03 15:29:48');
INSERT INTO `meta_boxes` VALUES (118, 'seo_meta', '[{\"index\":\"index\"}]', 1, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:29:48', '2025-08-03 15:29:48');
INSERT INTO `meta_boxes` VALUES (119, 'image', '[null]', 3, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:31:36', '2025-08-03 15:31:36');
INSERT INTO `meta_boxes` VALUES (120, 'seo_meta', '[{\"index\":\"index\"}]', 3, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:31:36', '2025-08-03 15:31:36');
INSERT INTO `meta_boxes` VALUES (121, 'image', '[null]', 4, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:32:12', '2025-08-03 15:32:12');
INSERT INTO `meta_boxes` VALUES (122, 'seo_meta', '[{\"index\":\"index\"}]', 4, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:32:12', '2025-08-03 15:32:12');
INSERT INTO `meta_boxes` VALUES (123, 'image', '[null]', 5, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:32:31', '2025-08-03 15:32:31');
INSERT INTO `meta_boxes` VALUES (124, 'seo_meta', '[{\"index\":\"index\"}]', 5, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:32:31', '2025-08-03 15:32:31');
INSERT INTO `meta_boxes` VALUES (125, 'image', '[null]', 6, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:32:55', '2025-08-03 15:32:55');
INSERT INTO `meta_boxes` VALUES (126, 'seo_meta', '[{\"index\":\"index\"}]', 6, 'Botble\\Blog\\Models\\Category', '2025-08-03 15:32:55', '2025-08-03 15:32:55');
INSERT INTO `meta_boxes` VALUES (127, 'layout', '[null]', 14, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:35:40', '2025-08-03 15:35:40');
INSERT INTO `meta_boxes` VALUES (128, 'video_embed_code', '[null]', 14, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:35:40', '2025-08-03 15:35:40');
INSERT INTO `meta_boxes` VALUES (129, 'video_upload_id', '[null]', 14, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:35:40', '2025-08-03 15:35:40');
INSERT INTO `meta_boxes` VALUES (130, 'show_toc_in_content', '[\"yes\"]', 14, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:35:40', '2025-08-03 15:35:40');
INSERT INTO `meta_boxes` VALUES (131, 'seo_meta', '[{\"index\":\"index\"}]', 14, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:35:40', '2025-08-03 15:35:40');
INSERT INTO `meta_boxes` VALUES (132, 'layout', '[null]', 13, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:48:47', '2025-08-03 15:48:47');
INSERT INTO `meta_boxes` VALUES (133, 'video_link', '[null]', 13, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:48:47', '2025-08-03 15:48:47');
INSERT INTO `meta_boxes` VALUES (134, 'video_embed_code', '[null]', 13, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:48:47', '2025-08-03 15:48:47');
INSERT INTO `meta_boxes` VALUES (135, 'video_upload_id', '[null]', 13, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:48:47', '2025-08-03 15:48:47');
INSERT INTO `meta_boxes` VALUES (136, 'show_toc_in_content', '[\"yes\"]', 13, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:48:47', '2025-08-03 15:48:47');
INSERT INTO `meta_boxes` VALUES (137, 'seo_meta', '[{\"index\":\"index\"}]', 13, 'Botble\\Blog\\Models\\Post', '2025-08-03 15:48:47', '2025-08-03 15:48:47');

-- ----------------------------
-- Table structure for migrations
-- ----------------------------
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations`  (
  `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 81 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of migrations
-- ----------------------------
INSERT INTO `migrations` VALUES (1, '2013_04_09_032329_create_base_tables', 1);
INSERT INTO `migrations` VALUES (2, '2013_04_09_062329_create_revisions_table', 1);
INSERT INTO `migrations` VALUES (3, '2014_10_12_000000_create_users_table', 1);
INSERT INTO `migrations` VALUES (4, '2014_10_12_100000_create_password_reset_tokens_table', 1);
INSERT INTO `migrations` VALUES (5, '2016_06_10_230148_create_acl_tables', 1);
INSERT INTO `migrations` VALUES (6, '2016_06_14_230857_create_menus_table', 1);
INSERT INTO `migrations` VALUES (7, '2016_06_28_221418_create_pages_table', 1);
INSERT INTO `migrations` VALUES (8, '2016_10_05_074239_create_setting_table', 1);
INSERT INTO `migrations` VALUES (9, '2016_11_28_032840_create_dashboard_widget_tables', 1);
INSERT INTO `migrations` VALUES (10, '2016_12_16_084601_create_widgets_table', 1);
INSERT INTO `migrations` VALUES (11, '2017_05_09_070343_create_media_tables', 1);
INSERT INTO `migrations` VALUES (12, '2017_11_03_070450_create_slug_table', 1);
INSERT INTO `migrations` VALUES (13, '2019_01_05_053554_create_jobs_table', 1);
INSERT INTO `migrations` VALUES (14, '2019_08_19_000000_create_failed_jobs_table', 1);
INSERT INTO `migrations` VALUES (15, '2019_12_14_000001_create_personal_access_tokens_table', 1);
INSERT INTO `migrations` VALUES (16, '2022_04_20_100851_add_index_to_media_table', 1);
INSERT INTO `migrations` VALUES (17, '2022_04_20_101046_add_index_to_menu_table', 1);
INSERT INTO `migrations` VALUES (18, '2022_07_10_034813_move_lang_folder_to_root', 1);
INSERT INTO `migrations` VALUES (19, '2022_08_04_051940_add_missing_column_expires_at', 1);
INSERT INTO `migrations` VALUES (20, '2022_09_01_000001_create_admin_notifications_tables', 1);
INSERT INTO `migrations` VALUES (21, '2022_10_14_024629_drop_column_is_featured', 1);
INSERT INTO `migrations` VALUES (22, '2022_11_18_063357_add_missing_timestamp_in_table_settings', 1);
INSERT INTO `migrations` VALUES (23, '2022_12_02_093615_update_slug_index_columns', 1);
INSERT INTO `migrations` VALUES (24, '2023_01_30_024431_add_alt_to_media_table', 1);
INSERT INTO `migrations` VALUES (25, '2023_02_16_042611_drop_table_password_resets', 1);
INSERT INTO `migrations` VALUES (26, '2023_04_23_005903_add_column_permissions_to_admin_notifications', 1);
INSERT INTO `migrations` VALUES (27, '2023_05_10_075124_drop_column_id_in_role_users_table', 1);
INSERT INTO `migrations` VALUES (28, '2023_08_21_090810_make_page_content_nullable', 1);
INSERT INTO `migrations` VALUES (29, '2023_09_14_021936_update_index_for_slugs_table', 1);
INSERT INTO `migrations` VALUES (30, '2023_12_06_100448_change_random_hash_for_media', 1);
INSERT INTO `migrations` VALUES (31, '2023_12_07_095130_add_color_column_to_media_folders_table', 1);
INSERT INTO `migrations` VALUES (32, '2023_12_17_162208_make_sure_column_color_in_media_folders_nullable', 1);
INSERT INTO `migrations` VALUES (33, '2020_11_18_150916_ads_create_ads_table', 2);
INSERT INTO `migrations` VALUES (34, '2021_12_02_035301_add_ads_translations_table', 2);
INSERT INTO `migrations` VALUES (35, '2023_04_17_062645_add_open_in_new_tab', 2);
INSERT INTO `migrations` VALUES (36, '2023_11_07_023805_add_tablet_mobile_image', 2);
INSERT INTO `migrations` VALUES (37, '2015_06_29_025744_create_audit_history', 3);
INSERT INTO `migrations` VALUES (38, '2023_11_14_033417_change_request_column_in_table_audit_histories', 3);
INSERT INTO `migrations` VALUES (39, '2015_06_18_033822_create_blog_table', 4);
INSERT INTO `migrations` VALUES (40, '2021_02_16_092633_remove_default_value_for_author_type', 4);
INSERT INTO `migrations` VALUES (41, '2021_12_03_030600_create_blog_translations', 4);
INSERT INTO `migrations` VALUES (42, '2022_04_19_113923_add_index_to_table_posts', 4);
INSERT INTO `migrations` VALUES (43, '2023_08_29_074620_make_column_author_id_nullable', 4);
INSERT INTO `migrations` VALUES (44, '2021_07_08_140130_comment_create_comment_table', 5);
INSERT INTO `migrations` VALUES (45, '2023_02_28_092156_update_table_comments', 5);
INSERT INTO `migrations` VALUES (46, '2016_06_17_091537_create_contacts_table', 6);
INSERT INTO `migrations` VALUES (47, '2023_11_10_080225_migrate_contact_blacklist_email_domains_to_core', 6);
INSERT INTO `migrations` VALUES (48, '2016_10_13_150201_create_galleries_table', 7);
INSERT INTO `migrations` VALUES (49, '2021_12_03_082953_create_gallery_translations', 7);
INSERT INTO `migrations` VALUES (50, '2022_04_30_034048_create_gallery_meta_translations_table', 7);
INSERT INTO `migrations` VALUES (51, '2023_08_29_075308_make_column_user_id_nullable', 7);
INSERT INTO `migrations` VALUES (52, '2016_10_03_032336_create_languages_table', 8);
INSERT INTO `migrations` VALUES (53, '2023_09_14_022423_add_index_for_language_table', 8);
INSERT INTO `migrations` VALUES (54, '2021_10_25_021023_fix-priority-load-for-language-advanced', 9);
INSERT INTO `migrations` VALUES (55, '2021_12_03_075608_create_page_translations', 9);
INSERT INTO `migrations` VALUES (56, '2023_07_06_011444_create_slug_translations_table', 9);
INSERT INTO `migrations` VALUES (57, '2017_10_04_140938_create_member_table', 10);
INSERT INTO `migrations` VALUES (58, '2023_10_16_075332_add_status_column', 10);
INSERT INTO `migrations` VALUES (59, '2017_10_24_154832_create_newsletter_table', 11);
INSERT INTO `migrations` VALUES (60, '2021_08_25_122708_post_collection_create_post_collection_table', 12);
INSERT INTO `migrations` VALUES (61, '2021_07_14_043820_add_publised_at_table_posts', 13);
INSERT INTO `migrations` VALUES (62, '2021_10_16_043705_pro_posts_create_favorite_posts_table', 14);
INSERT INTO `migrations` VALUES (63, '2021_10_16_105007_add_bookmark_posts_column_to_members_table', 14);
INSERT INTO `migrations` VALUES (64, '2021_11_13_010429_change_column_table_members', 14);
INSERT INTO `migrations` VALUES (65, '2016_05_28_112028_create_system_request_logs_table', 15);
INSERT INTO `migrations` VALUES (66, '2016_10_07_193005_create_translations_table', 16);
INSERT INTO `migrations` VALUES (67, '2023_12_12_105220_drop_translations_table', 16);
INSERT INTO `migrations` VALUES (68, '2024_03_20_080001_migrate_change_attribute_email_to_nullable_form_contacts_table', 17);
INSERT INTO `migrations` VALUES (69, '2024_03_25_000001_update_captcha_settings_for_contact', 17);
INSERT INTO `migrations` VALUES (70, '2024_03_25_000001_update_captcha_settings_for_newsletter', 17);
INSERT INTO `migrations` VALUES (71, '2024_04_01_043317_add_google_adsense_slot_id_to_ads_table', 17);
INSERT INTO `migrations` VALUES (72, '2024_04_04_110758_update_value_column_in_user_meta_table', 17);
INSERT INTO `migrations` VALUES (73, '2024_04_19_063914_create_custom_fields_table', 17);
INSERT INTO `migrations` VALUES (74, '2024_04_27_100730_improve_analytics_setting', 18);
INSERT INTO `migrations` VALUES (75, '2024_05_12_091229_add_column_visibility_to_table_media_files', 18);
INSERT INTO `migrations` VALUES (76, '2024_07_07_091316_fix_column_url_in_menu_nodes_table', 18);
INSERT INTO `migrations` VALUES (77, '2024_07_12_100000_change_random_hash_for_media', 18);
INSERT INTO `migrations` VALUES (78, '2024_07_30_091615_fix_order_column_in_categories_table', 19);
INSERT INTO `migrations` VALUES (79, '2024_09_30_024515_create_sessions_table', 19);
INSERT INTO `migrations` VALUES (80, '0001_01_01_000001_create_cache_table', 20);

-- ----------------------------
-- Table structure for newsletters
-- ----------------------------
DROP TABLE IF EXISTS `newsletters`;
CREATE TABLE `newsletters`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `email` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for pages
-- ----------------------------
DROP TABLE IF EXISTS `pages`;
CREATE TABLE `pages`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `user_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `template` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `pages_user_id_index`(`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of pages
-- ----------------------------
INSERT INTO `pages` VALUES (1, 'Homepage', '<p><img src=\"http://127.0.0.1:8000/storage/st-john-the-evangelist-200-x-100-px.jpg\" alt=\"st john the evangelist (200 x 100 px)\" loading=\"lazy\"><br>&nbsp;</p><shortcode>[posts-slider title=\"Editor\'s picked\" filter_by=\"posts-collection\" posts_collection_id=\"1\" limit=6 style=\"2\" description=\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\"][/posts-slider]</shortcode><shortcode>[recent-posts title=\"Recent posts\" subtitle=\"Latest\" limit=\"3\" background_style=\"background-white\" show_follow_us_section=\"1\" tab_post_limit=\"4\" ads_location=\"bottom-sidebar-ads\"][/recent-posts]</shortcode><shortcode>[videos-posts title=\"Latest Videos\" subtitle=\"In motion\"][/videos-posts]</shortcode><shortcode>[categories-tab-posts title=\"Popular\" subtitle=\"P\" limit=\"5\" categories_ids=\"1,2,3,4\" show_follow_us_section=\"1\" ads_location=\"top-sidebar-ads\"][/categories-tab-posts]</shortcode><shortcode>[most-comments title=\"Most comments\" limit=\"8\" subtitle=\"M\"][/most-comments]</shortcode><shortcode>[posts-collection title=\"Recommended\" subtitle=\"R\" limit=\"4\" posts_collection_id=\"2\" background_style=\"background-white\"][/posts-collection]</shortcode><shortcode>[theme-galleries title=\"@ OUR GALLERIES\" limit=\"7\" subtitle=\"O\"][/theme-galleries]</shortcode>', 1, NULL, 'homepage', '', 'published', '2024-12-28 04:21:13', '2025-07-30 10:56:40');
INSERT INTO `pages` VALUES (2, 'Home 2', '<shortcode>[posts-slider filter_by=\"featured\" limit=\"6\" style=\"3\"][/posts-slider]</shortcode><div class=\"raw-html-embed\"><div class=\"container1\">\r\n             \r\n            <h3 class=\"title_category\">St. John Anglican Church of Ghana, Odorkor</h3>\r\n                        <div class=\"content_wrap\">\r\n                                <div class=\"content_img\">\r\n                                        <img src=\"storage/whatsapp-image-2025-07-09-at-100144.jpeg\" alt=\"\" style=\"width:100%;\">\r\n                                    </div>\r\n                                <div class=\"content_info\">\r\n                    <div class=\"content_description\">\r\n                                                <h3 class=\"title_section\">Rev. Can. Col. Ian Adjetey Adjei (Rtd)</h3>\r\n                                                <h5 class=\"title_category\">Parish Priest</h5>\r\n                                                <div class=\"typical_text\">\r\n                            <p>Beloved in Christ,<br>\r\n\r\n                            Grace and peace be unto you from God our Father and the Lord Jesus Christ. Welcome to the Anglican Church of Ghana, Odorkor, where we gather as one family to worship, grow in faith, and serve our community with love.<br><br>\r\n                            \r\n                            May this church be a place of refuge, hope, and transformation for you. We invite you to journey with us in prayer, fellowship, and service to God and humanity.<br><br>\r\n                            \r\n                            Remain blessed in His unfailing grace.</p>\r\n                        </div>\r\n                                            </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n\r\n<div class=\"container1\">\r\n  <div class=\"content_wrap reverse\"> \r\n    <div class=\"content_img\">\r\n      <img src=\"wp-content/uploads/WhatsApp%20Image%202025-06-25%20at%2012.26.37.jpeg\" alt=\"\">\r\n    </div>\r\n    <div class=\"content_info\">\r\n      <div class=\"content_description\">\r\n        <h3 class=\"title_section\">About Us</h3>\r\n        <div class=\"typical_text\">\r\n          <p>The Anglican Church of Ghana, Odorkor, is a vibrant community of faith rooted in worship, prayer, and service. As part of the worldwide Anglican Communion, we are committed to spreading the love of Christ through the sacraments, sound teaching, and outreach to our community. We welcome people from all walks of life to join us in glorifying God and growing together in faith and fellowship.</p>\r\n        </div>\r\n        <a href=\"#\" class=\"read-more-btn\">Read More</a>\r\n      </div>\r\n    </div>\r\n  </div>\r\n</div>\r\n</div><shortcode>[categories-tab-posts title=\"Popular\" subtitle=\"P\" limit=\"5\" categories_ids=\"1,2,3,4\" show_follow_us_section=\"1\" ads_location=\"top-sidebar-ads\"][/categories-tab-posts]</shortcode><shortcode>[posts-slider title=\"Editor\'s picked\" filter_by=\"posts-collection\" posts_collection_id=\"1\" limit=6 style=\"2\" description=\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\"][/posts-slider]</shortcode><shortcode>[recent-posts title=\"Recent posts\" subtitle=\"Latest\" limit=\"3\" background_style=\"background-white\" show_follow_us_section=\"1\" tab_post_limit=\"4\" ads_location=\"bottom-sidebar-ads\"][/recent-posts]</shortcode>', 1, NULL, 'homepage2', '', 'published', '2024-12-28 04:21:13', '2025-08-03 15:27:17');
INSERT INTO `pages` VALUES (3, 'Home 3', '<div>[posts-slider filter_by=\"featured\" limit=\"6\" style=\"4\"][/posts-slider]</div><div>[posts-grid title=\"Featured Posts\" subtitle=\"News\" limit=\"6\" order_by=\"views\" order=\"desc\"][/posts-grid]</div><div>[most-comments title=\"Most comments\" limit=\"8\" subtitle=\"M\"][/most-comments]</div><div>[videos-posts title=\"Latest Videos\" subtitle=\"In motion\"][/videos-posts]</div><div>[posts-slider title=\"Editor\'s picked\" filter_by=\"posts-collection\" posts_collection_id=\"1\" limit=6 style=\"2\" description=\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\"][/posts-slider]</div><div>[recent-posts title=\"Recent posts\" subtitle=\"Latest\" limit=\"3\" background_style=\"background-white\" show_follow_us_section=\"1\" tab_post_limit=\"4\" ads_location=\"bottom-sidebar-ads\"][/recent-posts]</div>', 1, NULL, 'homepage2', NULL, 'published', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `pages` VALUES (4, 'Blog', '<div>[posts-listing layout=\"list\"][/posts-listing]</div>', 1, NULL, 'default', NULL, 'published', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `pages` VALUES (5, 'Category List', '<div>[posts-listing layout=\"list\"][/posts-listing]</div>', 1, NULL, 'no-breadcrumbs', NULL, 'published', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `pages` VALUES (6, 'Category grid', '<div>[posts-listing layout=\"grid\"][/posts-listing]</div>', 1, NULL, 'full', NULL, 'published', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `pages` VALUES (7, 'Category metro', '<div>[posts-listing layout=\"metro\"][/posts-listing]</div>', 1, NULL, 'full', NULL, 'published', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `pages` VALUES (8, 'Contact', '<div>[contact-form title=\"Get in Touch\"][/contact-form]</div><h3>Directions</h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[/google-map]</div>', 1, NULL, 'default', NULL, 'published', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `pages` VALUES (9, 'About Us', '<div class=\"raw-html-embed\"><div class=\"row\">\n    <div class=\"col-md-12 col-sm-12\">\n        <div class=\"single-excerpt\">\n            <p class=\"font-large\">Tolerably much and ouch the in began alas more ouch some then accommodating flimsy wholeheartedly after hello slightly the that cow pouted much a goodness bound rebuilt poetically jaguar groundhog</p>\n        </div>\n        <div class=\"entry-main-content\">\n            <h2>Computer inside</h2>\n            <hr class=\"wp-block-separator is-style-wide\">\n            <div class=\"wp-block-image\">\n                <figure class=\"alignleft is-resized\">\n                    <img class=\"border-radius-5\" src=\"/themes/ultra/images/thumbnail-14.jpg\">\n                </figure>\n            </div>\n            <p>Less lion goodness that euphemistically robin expeditiously bluebird smugly scratched far while thus cackled sheepishly rigid after due one assenting regarding censorious while occasional or this more crane went more as\n                this less much amid overhung anathematic because much held one exuberantly sheep goodness so where rat wry well concomitantly.</p>\n            <h5>What\'s next?</h5>\n            <p>Pouted flirtatiously as beaver beheld above forward energetic across this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much\n                wow callously irrespective limpet.</p>\n            <hr class=\"wp-block-separator is-style-dots\">\n            <p>Other yet this hazardous oh the until brave close towards stupidly euphemistically firefly boa some more underneath circa yet on as wow above ripe or blubbered one cobra bore ouch and this held ably one hence</p>\n            <h2>Conclusion</h2>\n            <hr class=\"wp-block-separator is-style-wide\">\n            <p>Alexe more gulped much garrulous a yikes earthworm wiped because goodness bet mongoose that along accommodatingly tortoise indecisively admirable but shark dear some and unwillingly before far vindictive less much this\n                on more less flexed far woolly from following glanced resolute unlike far this alongside against icily beyond flabby accidental.</p>\n\n\n            <h2>Design is future</h2>\n            <hr class=\"wp-block-separator is-style-wide\">\n            <p>Uninhibited carnally hired played in whimpered dear gorilla koala depending and much yikes off far quetzal goodness and from for grimaced goodness unaccountably and meadowlark near unblushingly crucial scallop tightly neurotic\n                hungrily some and dear furiously this apart.</p>\n            <p>Spluttered narrowly yikes left moth in yikes bowed this that grizzly much hello on spoon-fed that alas rethought much decently richly and wow against the frequent fluidly at formidable acceptably flapped besides and much\n                circa far over the bucolically hey precarious goldfinch mastodon goodness gnashed a jellyfish and one however because.</p>\n            <figure class=\"wp-block-gallery columns-3\">\n                <ul class=\"blocks-gallery-grid\">\n                    <li class=\"blocks-gallery-item\">\n                        <a href=\"#\"><img class=\"border-radius-5\" src=\"/themes/ultra/images/thumbnail-1.jpg\" alt=\"\"></a>\n                    </li>\n                    <li class=\"blocks-gallery-item\">\n                        <a href=\"#\"><img class=\"border-radius-5\" src=\"/themes/ultra/images/thumbnail-2.jpg\" alt=\"\"></a>\n                    </li>\n                    <li class=\"blocks-gallery-item\">\n                        <a href=\"#\"><img class=\"border-radius-5\" src=\"/themes/ultra/images/thumbnail-10.jpg\" alt=\"\"></a>\n                    </li>\n                </ul>\n            </figure>\n            <p>Laconic overheard dear woodchuck wow this outrageously taut beaver hey hello far meadowlark imitatively egregiously hugged that yikes minimally unanimous pouted flirtatiously as beaver beheld above forward energetic across\n                this jeepers beneficently cockily less a the raucously that magic upheld far so the this where crud then below after jeez enchanting drunkenly more much wow callously irrespective limpet.</p>\n            <hr class=\"wp-block-separator is-style-dots\">\n            <p>Scallop or far crud plain remarkably far by thus far iguana lewd precociously and and less rattlesnake contrary caustic wow this near alas and next and pled the yikes articulate about as less cackled dalmatian in much less\n                well jeering for the thanks blindly sentimental whimpered less across objectively fanciful grimaced wildly some wow and rose jeepers outgrew lugubrious luridly irrationally attractively dachshund.</p>\n            <blockquote class=\"wp-block-quote is-style-large\">\n                <p>The advance of technology is based on making it fit in so that you don\'t really even notice it, so it\'s part of everyday life.</p><cite>B. Johnso</cite>\n            </blockquote>\n            <p class=\"text-center\">\n                <a href=\"#\"><img class=\"d-inline\" src=\"assets/imgs/ads-4.jpg\" alt=\"\"></a>\n            </p>\n        </div>\n    </div>\n</div>\n</div><h3>Address</h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[/google-map]</div>', 1, NULL, 'default', NULL, 'published', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `pages` VALUES (10, 'Cookie Policy', '<h3>EU Cookie Consent</h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.</p><h4>Essential Data</h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.</p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.</p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \"token\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.</p>', 1, NULL, 'default', NULL, 'published', '2024-12-28 04:21:13', '2024-12-28 04:21:13');

-- ----------------------------
-- Table structure for pages_translations
-- ----------------------------
DROP TABLE IF EXISTS `pages_translations`;
CREATE TABLE `pages_translations`  (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pages_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  PRIMARY KEY (`lang_code`, `pages_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of pages_translations
-- ----------------------------
INSERT INTO `pages_translations` VALUES ('vi', 1, 'Trang chủ', NULL, '<div>[posts-slider title=\"\" filter_by=\"featured\" limit=\"4\" include=\"\" style=\"1\"][/posts-slider]</div><div>[posts-slider title=\"Editor\'s picked\" filter_by=\"posts-collection\" posts_collection_id=\"1\" limit=6 style=\"2\" description=\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\"][/posts-slider]</div><div>[recent-posts title=\"Bài viết mới\" subtitle=\"Latest\" limit=\"3\" show_follow_us_section=\"1\"][/recent-posts]</div><div>[categories-tab-posts title=\"Bài viết được quan tâm\" subtitle=\"P\" limit=\"5\" categories_ids=\"1,2,3,4\" show_follow_us_section=\"1\" ads_location=\"top-sidebar-ads\"][/categories-tab-posts]</div><div>[posts-grid title=\"Bài viết nổi bật\" subtitle=\"News\" categories=\"\" categories_exclude=\"\" style=\"2\" limit=\"6\"][/posts-grid]</div><div>[theme-galleries title=\"@ OUR GALLERIES\" subtitle=\"In motion\" limit=\"7\"][/theme-galleries]</div>');
INSERT INTO `pages_translations` VALUES ('vi', 2, 'Trang chủ 2', NULL, '<div>[posts-slider filter_by=\"featured\" limit=\"6\" style=\"3\"][/posts-slider]</div><div>[categories-tab-posts title=\"Popular\" subtitle=\"P\" limit=\"5\" categories_ids=\"1,2,3,4\" show_follow_us_section=\"1\" ads_location=\"top-sidebar-ads\"][/categories-tab-posts]</div><div>[most-comments title=\"Most comments\" limit=\"8\" subtitle=\"M\"][/most-comments]</div><div>[videos-posts title=\"Latest Videos\" subtitle=\"In motion\"][/videos-posts]</div><div>[posts-slider title=\"Editor\'s picked\" filter_by=\"posts-collection\" posts_collection_id=\"1\" limit=6 style=\"2\" description=\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\"][/posts-slider]</div><div>[recent-posts title=\"Recent posts\" subtitle=\"Latest\" limit=\"3\" background_style=\"background-white\" show_follow_us_section=\"1\" tab_post_limit=\"4\" ads_location=\"bottom-sidebar-ads\"][/recent-posts]</div>');
INSERT INTO `pages_translations` VALUES ('vi', 3, 'Trang chủ 3', NULL, '<div>[posts-slider filter_by=\"featured\" limit=\"6\" style=\"4\"][/posts-slider]</div><div>[posts-grid title=\"Featured Posts\" subtitle=\"News\" limit=\"6\" order_by=\"views\" order=\"desc\"][/posts-grid]</div><div>[most-comments title=\"Most comments\" limit=\"8\" subtitle=\"M\"][/most-comments]</div><div>[videos-posts title=\"Latest Videos\" subtitle=\"In motion\"][/videos-posts]</div><div>[posts-slider title=\"Editor\'s picked\" filter_by=\"posts-collection\" posts_collection_id=\"1\" limit=6 style=\"2\" description=\"The featured articles are selected by experienced editors. It is also based on the reader\'s rating. These posts have a lot of interest.\"][/posts-slider]</div><div>[recent-posts title=\"Recent posts\" subtitle=\"Latest\" limit=\"3\" background_style=\"background-white\" show_follow_us_section=\"1\" tab_post_limit=\"4\" ads_location=\"bottom-sidebar-ads\"][/recent-posts]</div>');
INSERT INTO `pages_translations` VALUES ('vi', 4, 'Tin tức', NULL, '<div>[categories-big limit=\"12\"][/categories-big]</div>');
INSERT INTO `pages_translations` VALUES ('vi', 5, 'Tin tức danh sách', NULL, '<div>[posts-listing layout=\"list\"][/posts-listing]</div>');
INSERT INTO `pages_translations` VALUES ('vi', 6, 'Tin tức dạng cột', NULL, '<div>[posts-listing layout=\"grid\"][/posts-listing]</div>');
INSERT INTO `pages_translations` VALUES ('vi', 7, 'Tin tức metro', NULL, '<div>[posts-listing layout=\"metro\"][/posts-listing]</div>');
INSERT INTO `pages_translations` VALUES ('vi', 8, 'Liên hệ', NULL, '<div>[contact-form title=\"Liên hệ\"][/contact-form]</div><h3>Địa chỉ</h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[/google-map]</div>');
INSERT INTO `pages_translations` VALUES ('vi', 9, 'Về chúng tôi', NULL, '<div class=\"raw-html-embed\"><div class=\"row\">\n    <div class=\"col-md-12 col-sm-12\">\n        <div class=\"single-excerpt\">\n            <p class=\"font-large\">Người ta né tránh nhắc đến Chúa Kito khi nói đến mốc lịch sử bằng cách nói Trước công nguyên và sau công nguyên. Nhưng nguyên tiếng anh: Before Chirst, After Chirst – trước Chúa Kito, sau Chúa Kito – người ta sợ lịch sử của Kito giáo. Đó là lời chia sẻ của cha đặc trách Gioan trong Thánh lễ thường kì Cộng đoàn sinh viên Công giáo y dược vào lúc 19h15’, ngày 11.05.2017 tại đền thánh Gierado, Giáo xứ Thái Hà.</p>\n        </div>\n        <div class=\"entry-main-content\">\n            <h2>Cuộc sống là những phép màu</h2>\n            <hr class=\"wp-block-separator is-style-wide\">\n            <div class=\"wp-block-image\">\n                <figure class=\"alignleft is-resized\">\n                    <img class=\"border-radius-5\" src=\"/themes/ultra/images/thumbnail-14.jpg\">\n                </figure>\n            </div>\n            <p>Khởi đầu bài giảng của mình cha nói đến một trong những khó khăn lớn nhất Giáo Hội nói chung và người tín hữu nói riêng đó chính là niềm tin vào Thiên Chúa. Chính khủng hoảng niềm tin gây nên chiến tranh, gây nên thù hận và chết chóc. Lòng tin không chỉ ảnh hưởng lên cá nhân mà thôi nhưng lên toàn thế giới. Hôm nay, Chúa cho chúng ta thấy lòng tin là khởi đầu, là mấu chốt để con người đứng vững giữa trăm chiều thử thách.</p>\n            <h5>Ý nghĩa là gì?</h5>\n            <p>Hai bài đọc hôm nay đều đi từ lịch sử, Chúa Giesu tiên báo kẻ sẽ nộp thầy. Ngài chọn Giuda không phải chọn nhầm, nhưng Ngài nói rõ trong bài Tin Mừng rằng lời kinh thánh phải được ứng nghiệm: “Kẻ giơ tay chấm chung một đĩa với con lại giơ gót đạp con”. Trong bài đọc một, Phaolo nói về Đavit để ứng nghiệm lời Kinh thánh đã nói, để anh chị em Do thái nhận ra được lời tiên báo qua lịch sử là chúa Giesu.</p>\n            <hr class=\"wp-block-separator is-style-dots\">\n            <p>Để có được lòng tin nơi con người, Chúa Giesu đã khai mào trong một chương trình lịch sử dài tập. Lịch sử Cựu ước loan báo đúng với những gì đã xảy ra với Chúa Giesu Kito. Một triết gia người Pháp nói rằng: “Kito giáo có một nền tảng đức tin vững chắc đó là lịch sử, nhưng Kito giáo quên đi điểm quan trọng này và ngày nay đi nặng về phía thần học”.</p>\n            <h2>Kết luận</h2>\n            <hr class=\"wp-block-separator is-style-wide\">\n            <p>Cha nhắc lại: Kito Giáo cắm rễ sâu, trải dài và được ứng nghiệm trong lịch sử thánh kinh ngang qua những con người, nơi chốn, địa điểm cụ thể. Nhìn lại lịch sử, các ngày lễ xã hội, ngày nghỉ… đều liên quan đến Kito giáo và xuất phát từ Kito giáo.</p>\n\n\n            <h2>Tương lai</h2>\n            <hr class=\"wp-block-separator is-style-wide\">\n            <p>Cha nói đến biến cố Đức Mẹ hiện ra tại Fatima 100 năm là một biến cố lịch sử có thời gian, không gian, nhân vật và sứ điệp cụ thể không phải con người tự dụng nên hay hoang tưởng.</p>\n            <p>Niềm tin của mỗi chúng ta phải dựa vào lịch sử chứ không phải mơ hồ. Khi nhìn lại quá khứ ta biết rằng lòng tin đó đã được Thiên Chúa khai mào từ rất sớm. Các thánh Tông đồ đã đứng trên bình diện lịch sự để minh chứng niềm tin của con người vào Giave Thiên Chúa.</p>\n            <figure class=\"wp-block-gallery columns-3\">\n                <ul class=\"blocks-gallery-grid\">\n                    <li class=\"blocks-gallery-item\">\n                        <a href=\"#\"><img class=\"border-radius-5\" src=\"/themes/ultra/images/thumbnail-1.jpg\" alt=\"\"></a>\n                    </li>\n                    <li class=\"blocks-gallery-item\">\n                        <a href=\"#\"><img class=\"border-radius-5\" src=\"/themes/ultra/images/thumbnail-2.jpg\" alt=\"\"></a>\n                    </li>\n                    <li class=\"blocks-gallery-item\">\n                        <a href=\"#\"><img class=\"border-radius-5\" src=\"/themes/ultra/images/thumbnail-10.jpg\" alt=\"\"></a>\n                    </li>\n                </ul>\n            </figure>\n            <p>Nhiều người thời nay biết lịch sử nhưng không biết Chúa Kito là ai vì họ né tránh Chúa Giesu. Chúa Giesu đi vào lịch sử để tỏ cho con người cùng đích của sự sống là gì và Thiên Chúa là ai cùng những lời tiên báo để củng cố lòng tin cho con người.</p>\n            <hr class=\"wp-block-separator is-style-dots\">\n           <blockquote class=\"wp-block-quote is-style-large\">\n                <p>Sự tiến bộ của công nghệ dựa trên việc làm cho nó phù hợp để bạn thậm chí không thực sự nhận thấy nó, vì vậy nó là một phần của cuộc sống hàng ngày.</p><cite>B. Johnso</cite>\n            </blockquote>\n            <p class=\"text-center\">\n                <a href=\"#\"><img class=\"d-inline\" src=\"assets/imgs/ads-4.jpg\" alt=\"\"></a>\n            </p>\n        </div>\n    </div>\n</div>\n</div>');
INSERT INTO `pages_translations` VALUES ('vi', 10, 'Cookie Policy', NULL, '<h3>EU Cookie Consent</h3><p>Để sử dụng trang web này, chúng tôi đang sử dụng Cookie và thu thập một số Dữ liệu. Để tuân thủ GDPR của Liên minh Châu Âu, chúng tôi cho bạn lựa chọn nếu bạn cho phép chúng tôi sử dụng một số Cookie nhất định và thu thập một số Dữ liệu.</p><h4>Dữ liệu cần thiết</h4><p>Dữ liệu cần thiết là cần thiết để chạy Trang web bạn đang truy cập về mặt kỹ thuật. Bạn không thể hủy kích hoạt chúng.</p><p>- Session Cookie: PHP sử dụng Cookie để xác định phiên của người dùng. Nếu không có Cookie này, trang web sẽ không hoạt động.</p><p>- XSRF-Token Cookie: Laravel tự động tạo \"token\" CSRF cho mỗi phiên người dùng đang hoạt động do ứng dụng quản lý. Token này được sử dụng để xác minh rằng người dùng đã xác thực là người thực sự đưa ra yêu cầu đối với ứng dụng.</p>');

-- ----------------------------
-- Table structure for password_reset_tokens
-- ----------------------------
DROP TABLE IF EXISTS `password_reset_tokens`;
CREATE TABLE `password_reset_tokens`  (
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`email`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for personal_access_tokens
-- ----------------------------
DROP TABLE IF EXISTS `personal_access_tokens`;
CREATE TABLE `personal_access_tokens`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `tokenable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tokenable_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `abilities` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `last_used_at` timestamp(0) NULL DEFAULT NULL,
  `expires_at` timestamp(0) NULL DEFAULT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `personal_access_tokens_token_unique`(`token`) USING BTREE,
  INDEX `personal_access_tokens_tokenable_type_tokenable_id_index`(`tokenable_type`, `tokenable_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for post_categories
-- ----------------------------
DROP TABLE IF EXISTS `post_categories`;
CREATE TABLE `post_categories`  (
  `category_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL,
  INDEX `post_categories_category_id_index`(`category_id`) USING BTREE,
  INDEX `post_categories_post_id_index`(`post_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of post_categories
-- ----------------------------
INSERT INTO `post_categories` VALUES (2, 3);
INSERT INTO `post_categories` VALUES (1, 5);
INSERT INTO `post_categories` VALUES (1, 10);
INSERT INTO `post_categories` VALUES (1, 13);
INSERT INTO `post_categories` VALUES (1, 14);
INSERT INTO `post_categories` VALUES (1, 16);
INSERT INTO `post_categories` VALUES (2, 16);
INSERT INTO `post_categories` VALUES (3, 16);
INSERT INTO `post_categories` VALUES (4, 16);
INSERT INTO `post_categories` VALUES (5, 16);
INSERT INTO `post_categories` VALUES (6, 16);
INSERT INTO `post_categories` VALUES (7, 16);
INSERT INTO `post_categories` VALUES (1, 19);
INSERT INTO `post_categories` VALUES (2, 19);
INSERT INTO `post_categories` VALUES (3, 19);
INSERT INTO `post_categories` VALUES (4, 19);
INSERT INTO `post_categories` VALUES (5, 19);
INSERT INTO `post_categories` VALUES (6, 19);
INSERT INTO `post_categories` VALUES (7, 19);
INSERT INTO `post_categories` VALUES (2, 20);

-- ----------------------------
-- Table structure for post_collections
-- ----------------------------
DROP TABLE IF EXISTS `post_collections`;
CREATE TABLE `post_collections`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of post_collections
-- ----------------------------
INSERT INTO `post_collections` VALUES (1, 'Editor\'s Picked', NULL, NULL, 'published', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `post_collections` VALUES (2, 'Recommended Posts', NULL, NULL, 'published', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `post_collections` VALUES (3, 'Bài viết hay', NULL, NULL, 'published', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `post_collections` VALUES (4, 'Recommended Posts', NULL, NULL, 'published', '2024-12-28 04:21:23', '2024-12-28 04:21:23');

-- ----------------------------
-- Table structure for post_collections_posts
-- ----------------------------
DROP TABLE IF EXISTS `post_collections_posts`;
CREATE TABLE `post_collections_posts`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `post_collection_id` int(10) UNSIGNED NOT NULL,
  `post_id` int(10) UNSIGNED NOT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 190 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of post_collections_posts
-- ----------------------------
INSERT INTO `post_collections_posts` VALUES (1, 1, 12);
INSERT INTO `post_collections_posts` VALUES (2, 1, 3);
INSERT INTO `post_collections_posts` VALUES (3, 1, 5);
INSERT INTO `post_collections_posts` VALUES (4, 1, 1);
INSERT INTO `post_collections_posts` VALUES (5, 1, 7);
INSERT INTO `post_collections_posts` VALUES (6, 1, 9);
INSERT INTO `post_collections_posts` VALUES (7, 2, 15);
INSERT INTO `post_collections_posts` VALUES (8, 2, 4);
INSERT INTO `post_collections_posts` VALUES (9, 2, 2);
INSERT INTO `post_collections_posts` VALUES (10, 2, 1);
INSERT INTO `post_collections_posts` VALUES (11, 2, 10);
INSERT INTO `post_collections_posts` VALUES (12, 3, 20);
INSERT INTO `post_collections_posts` VALUES (13, 3, 19);
INSERT INTO `post_collections_posts` VALUES (14, 3, 21);
INSERT INTO `post_collections_posts` VALUES (15, 3, 31);
INSERT INTO `post_collections_posts` VALUES (16, 3, 32);
INSERT INTO `post_collections_posts` VALUES (17, 4, 22);
INSERT INTO `post_collections_posts` VALUES (18, 4, 24);
INSERT INTO `post_collections_posts` VALUES (19, 4, 25);
INSERT INTO `post_collections_posts` VALUES (20, 4, 29);
INSERT INTO `post_collections_posts` VALUES (21, 4, 30);
INSERT INTO `post_collections_posts` VALUES (22, 1, 12);
INSERT INTO `post_collections_posts` VALUES (23, 1, 3);
INSERT INTO `post_collections_posts` VALUES (24, 1, 5);
INSERT INTO `post_collections_posts` VALUES (25, 1, 1);
INSERT INTO `post_collections_posts` VALUES (26, 1, 7);
INSERT INTO `post_collections_posts` VALUES (27, 1, 9);
INSERT INTO `post_collections_posts` VALUES (28, 2, 15);
INSERT INTO `post_collections_posts` VALUES (29, 2, 4);
INSERT INTO `post_collections_posts` VALUES (30, 2, 2);
INSERT INTO `post_collections_posts` VALUES (31, 2, 1);
INSERT INTO `post_collections_posts` VALUES (32, 2, 10);
INSERT INTO `post_collections_posts` VALUES (33, 3, 20);
INSERT INTO `post_collections_posts` VALUES (34, 3, 19);
INSERT INTO `post_collections_posts` VALUES (35, 3, 21);
INSERT INTO `post_collections_posts` VALUES (36, 3, 31);
INSERT INTO `post_collections_posts` VALUES (37, 3, 32);
INSERT INTO `post_collections_posts` VALUES (38, 4, 22);
INSERT INTO `post_collections_posts` VALUES (39, 4, 24);
INSERT INTO `post_collections_posts` VALUES (40, 4, 25);
INSERT INTO `post_collections_posts` VALUES (41, 4, 29);
INSERT INTO `post_collections_posts` VALUES (42, 4, 30);
INSERT INTO `post_collections_posts` VALUES (43, 1, 12);
INSERT INTO `post_collections_posts` VALUES (44, 1, 3);
INSERT INTO `post_collections_posts` VALUES (45, 1, 5);
INSERT INTO `post_collections_posts` VALUES (46, 1, 1);
INSERT INTO `post_collections_posts` VALUES (47, 1, 7);
INSERT INTO `post_collections_posts` VALUES (48, 1, 9);
INSERT INTO `post_collections_posts` VALUES (49, 2, 15);
INSERT INTO `post_collections_posts` VALUES (50, 2, 4);
INSERT INTO `post_collections_posts` VALUES (51, 2, 2);
INSERT INTO `post_collections_posts` VALUES (52, 2, 1);
INSERT INTO `post_collections_posts` VALUES (53, 2, 10);
INSERT INTO `post_collections_posts` VALUES (54, 3, 20);
INSERT INTO `post_collections_posts` VALUES (55, 3, 19);
INSERT INTO `post_collections_posts` VALUES (56, 3, 21);
INSERT INTO `post_collections_posts` VALUES (57, 3, 31);
INSERT INTO `post_collections_posts` VALUES (58, 3, 32);
INSERT INTO `post_collections_posts` VALUES (59, 4, 22);
INSERT INTO `post_collections_posts` VALUES (60, 4, 24);
INSERT INTO `post_collections_posts` VALUES (61, 4, 25);
INSERT INTO `post_collections_posts` VALUES (62, 4, 29);
INSERT INTO `post_collections_posts` VALUES (63, 4, 30);
INSERT INTO `post_collections_posts` VALUES (64, 1, 12);
INSERT INTO `post_collections_posts` VALUES (65, 1, 3);
INSERT INTO `post_collections_posts` VALUES (66, 1, 5);
INSERT INTO `post_collections_posts` VALUES (67, 1, 1);
INSERT INTO `post_collections_posts` VALUES (68, 1, 7);
INSERT INTO `post_collections_posts` VALUES (69, 1, 9);
INSERT INTO `post_collections_posts` VALUES (70, 2, 15);
INSERT INTO `post_collections_posts` VALUES (71, 2, 4);
INSERT INTO `post_collections_posts` VALUES (72, 2, 2);
INSERT INTO `post_collections_posts` VALUES (73, 2, 1);
INSERT INTO `post_collections_posts` VALUES (74, 2, 10);
INSERT INTO `post_collections_posts` VALUES (75, 3, 20);
INSERT INTO `post_collections_posts` VALUES (76, 3, 19);
INSERT INTO `post_collections_posts` VALUES (77, 3, 21);
INSERT INTO `post_collections_posts` VALUES (78, 3, 31);
INSERT INTO `post_collections_posts` VALUES (79, 3, 32);
INSERT INTO `post_collections_posts` VALUES (80, 4, 22);
INSERT INTO `post_collections_posts` VALUES (81, 4, 24);
INSERT INTO `post_collections_posts` VALUES (82, 4, 25);
INSERT INTO `post_collections_posts` VALUES (83, 4, 29);
INSERT INTO `post_collections_posts` VALUES (84, 4, 30);
INSERT INTO `post_collections_posts` VALUES (85, 1, 12);
INSERT INTO `post_collections_posts` VALUES (86, 1, 3);
INSERT INTO `post_collections_posts` VALUES (87, 1, 5);
INSERT INTO `post_collections_posts` VALUES (88, 1, 1);
INSERT INTO `post_collections_posts` VALUES (89, 1, 7);
INSERT INTO `post_collections_posts` VALUES (90, 1, 9);
INSERT INTO `post_collections_posts` VALUES (91, 2, 15);
INSERT INTO `post_collections_posts` VALUES (92, 2, 4);
INSERT INTO `post_collections_posts` VALUES (93, 2, 2);
INSERT INTO `post_collections_posts` VALUES (94, 2, 1);
INSERT INTO `post_collections_posts` VALUES (95, 2, 10);
INSERT INTO `post_collections_posts` VALUES (96, 3, 20);
INSERT INTO `post_collections_posts` VALUES (97, 3, 19);
INSERT INTO `post_collections_posts` VALUES (98, 3, 21);
INSERT INTO `post_collections_posts` VALUES (99, 3, 31);
INSERT INTO `post_collections_posts` VALUES (100, 3, 32);
INSERT INTO `post_collections_posts` VALUES (101, 4, 22);
INSERT INTO `post_collections_posts` VALUES (102, 4, 24);
INSERT INTO `post_collections_posts` VALUES (103, 4, 25);
INSERT INTO `post_collections_posts` VALUES (104, 4, 29);
INSERT INTO `post_collections_posts` VALUES (105, 4, 30);
INSERT INTO `post_collections_posts` VALUES (106, 1, 12);
INSERT INTO `post_collections_posts` VALUES (107, 1, 3);
INSERT INTO `post_collections_posts` VALUES (108, 1, 5);
INSERT INTO `post_collections_posts` VALUES (109, 1, 1);
INSERT INTO `post_collections_posts` VALUES (110, 1, 7);
INSERT INTO `post_collections_posts` VALUES (111, 1, 9);
INSERT INTO `post_collections_posts` VALUES (112, 2, 15);
INSERT INTO `post_collections_posts` VALUES (113, 2, 4);
INSERT INTO `post_collections_posts` VALUES (114, 2, 2);
INSERT INTO `post_collections_posts` VALUES (115, 2, 1);
INSERT INTO `post_collections_posts` VALUES (116, 2, 10);
INSERT INTO `post_collections_posts` VALUES (117, 3, 20);
INSERT INTO `post_collections_posts` VALUES (118, 3, 19);
INSERT INTO `post_collections_posts` VALUES (119, 3, 21);
INSERT INTO `post_collections_posts` VALUES (120, 3, 31);
INSERT INTO `post_collections_posts` VALUES (121, 3, 32);
INSERT INTO `post_collections_posts` VALUES (122, 4, 22);
INSERT INTO `post_collections_posts` VALUES (123, 4, 24);
INSERT INTO `post_collections_posts` VALUES (124, 4, 25);
INSERT INTO `post_collections_posts` VALUES (125, 4, 29);
INSERT INTO `post_collections_posts` VALUES (126, 4, 30);
INSERT INTO `post_collections_posts` VALUES (127, 1, 12);
INSERT INTO `post_collections_posts` VALUES (128, 1, 3);
INSERT INTO `post_collections_posts` VALUES (129, 1, 5);
INSERT INTO `post_collections_posts` VALUES (130, 1, 1);
INSERT INTO `post_collections_posts` VALUES (131, 1, 7);
INSERT INTO `post_collections_posts` VALUES (132, 1, 9);
INSERT INTO `post_collections_posts` VALUES (133, 2, 15);
INSERT INTO `post_collections_posts` VALUES (134, 2, 4);
INSERT INTO `post_collections_posts` VALUES (135, 2, 2);
INSERT INTO `post_collections_posts` VALUES (136, 2, 1);
INSERT INTO `post_collections_posts` VALUES (137, 2, 10);
INSERT INTO `post_collections_posts` VALUES (138, 3, 20);
INSERT INTO `post_collections_posts` VALUES (139, 3, 19);
INSERT INTO `post_collections_posts` VALUES (140, 3, 21);
INSERT INTO `post_collections_posts` VALUES (141, 3, 31);
INSERT INTO `post_collections_posts` VALUES (142, 3, 32);
INSERT INTO `post_collections_posts` VALUES (143, 4, 22);
INSERT INTO `post_collections_posts` VALUES (144, 4, 24);
INSERT INTO `post_collections_posts` VALUES (145, 4, 25);
INSERT INTO `post_collections_posts` VALUES (146, 4, 29);
INSERT INTO `post_collections_posts` VALUES (147, 4, 30);
INSERT INTO `post_collections_posts` VALUES (148, 1, 12);
INSERT INTO `post_collections_posts` VALUES (149, 1, 3);
INSERT INTO `post_collections_posts` VALUES (150, 1, 5);
INSERT INTO `post_collections_posts` VALUES (151, 1, 1);
INSERT INTO `post_collections_posts` VALUES (152, 1, 7);
INSERT INTO `post_collections_posts` VALUES (153, 1, 9);
INSERT INTO `post_collections_posts` VALUES (154, 2, 15);
INSERT INTO `post_collections_posts` VALUES (155, 2, 4);
INSERT INTO `post_collections_posts` VALUES (156, 2, 2);
INSERT INTO `post_collections_posts` VALUES (157, 2, 1);
INSERT INTO `post_collections_posts` VALUES (158, 2, 10);
INSERT INTO `post_collections_posts` VALUES (159, 3, 20);
INSERT INTO `post_collections_posts` VALUES (160, 3, 19);
INSERT INTO `post_collections_posts` VALUES (161, 3, 21);
INSERT INTO `post_collections_posts` VALUES (162, 3, 31);
INSERT INTO `post_collections_posts` VALUES (163, 3, 32);
INSERT INTO `post_collections_posts` VALUES (164, 4, 22);
INSERT INTO `post_collections_posts` VALUES (165, 4, 24);
INSERT INTO `post_collections_posts` VALUES (166, 4, 25);
INSERT INTO `post_collections_posts` VALUES (167, 4, 29);
INSERT INTO `post_collections_posts` VALUES (168, 4, 30);
INSERT INTO `post_collections_posts` VALUES (169, 1, 12);
INSERT INTO `post_collections_posts` VALUES (170, 1, 3);
INSERT INTO `post_collections_posts` VALUES (171, 1, 5);
INSERT INTO `post_collections_posts` VALUES (172, 1, 1);
INSERT INTO `post_collections_posts` VALUES (173, 1, 7);
INSERT INTO `post_collections_posts` VALUES (174, 1, 9);
INSERT INTO `post_collections_posts` VALUES (175, 2, 15);
INSERT INTO `post_collections_posts` VALUES (176, 2, 4);
INSERT INTO `post_collections_posts` VALUES (177, 2, 2);
INSERT INTO `post_collections_posts` VALUES (178, 2, 1);
INSERT INTO `post_collections_posts` VALUES (179, 2, 10);
INSERT INTO `post_collections_posts` VALUES (180, 3, 20);
INSERT INTO `post_collections_posts` VALUES (181, 3, 19);
INSERT INTO `post_collections_posts` VALUES (182, 3, 21);
INSERT INTO `post_collections_posts` VALUES (183, 3, 31);
INSERT INTO `post_collections_posts` VALUES (184, 3, 32);
INSERT INTO `post_collections_posts` VALUES (185, 4, 22);
INSERT INTO `post_collections_posts` VALUES (186, 4, 24);
INSERT INTO `post_collections_posts` VALUES (187, 4, 25);
INSERT INTO `post_collections_posts` VALUES (188, 4, 29);
INSERT INTO `post_collections_posts` VALUES (189, 4, 30);

-- ----------------------------
-- Table structure for post_tags
-- ----------------------------
DROP TABLE IF EXISTS `post_tags`;
CREATE TABLE `post_tags`  (
  `tag_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL,
  INDEX `post_tags_tag_id_index`(`tag_id`) USING BTREE,
  INDEX `post_tags_post_id_index`(`post_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of post_tags
-- ----------------------------
INSERT INTO `post_tags` VALUES (1, 1);
INSERT INTO `post_tags` VALUES (2, 1);
INSERT INTO `post_tags` VALUES (3, 1);
INSERT INTO `post_tags` VALUES (4, 1);
INSERT INTO `post_tags` VALUES (5, 1);
INSERT INTO `post_tags` VALUES (6, 1);
INSERT INTO `post_tags` VALUES (7, 1);
INSERT INTO `post_tags` VALUES (1, 2);
INSERT INTO `post_tags` VALUES (2, 2);
INSERT INTO `post_tags` VALUES (3, 2);
INSERT INTO `post_tags` VALUES (4, 2);
INSERT INTO `post_tags` VALUES (5, 2);
INSERT INTO `post_tags` VALUES (6, 2);
INSERT INTO `post_tags` VALUES (7, 2);
INSERT INTO `post_tags` VALUES (1, 3);
INSERT INTO `post_tags` VALUES (2, 3);
INSERT INTO `post_tags` VALUES (3, 3);
INSERT INTO `post_tags` VALUES (4, 3);
INSERT INTO `post_tags` VALUES (5, 3);
INSERT INTO `post_tags` VALUES (6, 3);
INSERT INTO `post_tags` VALUES (7, 3);
INSERT INTO `post_tags` VALUES (1, 5);
INSERT INTO `post_tags` VALUES (2, 5);
INSERT INTO `post_tags` VALUES (3, 5);
INSERT INTO `post_tags` VALUES (4, 5);
INSERT INTO `post_tags` VALUES (5, 5);
INSERT INTO `post_tags` VALUES (6, 5);
INSERT INTO `post_tags` VALUES (7, 5);
INSERT INTO `post_tags` VALUES (1, 10);
INSERT INTO `post_tags` VALUES (2, 10);
INSERT INTO `post_tags` VALUES (3, 10);
INSERT INTO `post_tags` VALUES (4, 10);
INSERT INTO `post_tags` VALUES (5, 10);
INSERT INTO `post_tags` VALUES (6, 10);
INSERT INTO `post_tags` VALUES (7, 10);
INSERT INTO `post_tags` VALUES (1, 13);
INSERT INTO `post_tags` VALUES (2, 13);
INSERT INTO `post_tags` VALUES (3, 13);
INSERT INTO `post_tags` VALUES (4, 13);
INSERT INTO `post_tags` VALUES (5, 13);
INSERT INTO `post_tags` VALUES (6, 13);
INSERT INTO `post_tags` VALUES (7, 13);
INSERT INTO `post_tags` VALUES (1, 14);
INSERT INTO `post_tags` VALUES (2, 14);
INSERT INTO `post_tags` VALUES (3, 14);
INSERT INTO `post_tags` VALUES (4, 14);
INSERT INTO `post_tags` VALUES (5, 14);
INSERT INTO `post_tags` VALUES (6, 14);
INSERT INTO `post_tags` VALUES (7, 14);
INSERT INTO `post_tags` VALUES (1, 16);
INSERT INTO `post_tags` VALUES (2, 16);
INSERT INTO `post_tags` VALUES (3, 16);
INSERT INTO `post_tags` VALUES (4, 16);
INSERT INTO `post_tags` VALUES (5, 16);
INSERT INTO `post_tags` VALUES (6, 16);
INSERT INTO `post_tags` VALUES (7, 16);
INSERT INTO `post_tags` VALUES (1, 19);
INSERT INTO `post_tags` VALUES (2, 19);
INSERT INTO `post_tags` VALUES (3, 19);
INSERT INTO `post_tags` VALUES (4, 19);
INSERT INTO `post_tags` VALUES (5, 19);
INSERT INTO `post_tags` VALUES (6, 19);
INSERT INTO `post_tags` VALUES (7, 19);
INSERT INTO `post_tags` VALUES (1, 20);
INSERT INTO `post_tags` VALUES (2, 20);
INSERT INTO `post_tags` VALUES (3, 20);
INSERT INTO `post_tags` VALUES (4, 20);
INSERT INTO `post_tags` VALUES (5, 20);
INSERT INTO `post_tags` VALUES (6, 20);
INSERT INTO `post_tags` VALUES (7, 20);

-- ----------------------------
-- Table structure for posts
-- ----------------------------
DROP TABLE IF EXISTS `posts`;
CREATE TABLE `posts`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `views` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `format_type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `published_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `posts_status_index`(`status`) USING BTREE,
  INDEX `posts_author_id_index`(`author_id`) USING BTREE,
  INDEX `posts_author_type_index`(`author_type`) USING BTREE,
  INDEX `posts_created_at_index`(`created_at`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 21 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of posts
-- ----------------------------
INSERT INTO `posts` VALUES (1, 'Welcome to St. John the Evangelist Anglican Church', 'Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.', NULL, 'published', 1, 'Botble\\Member\\Models\\Member', 1, 'silhouette-of-cross-against-colorful-sunset-sky-video.jpg', 1807, NULL, '2024-12-28 00:00:00', '2025-08-03 15:49:30', NULL);
INSERT INTO `posts` VALUES (2, '.', 'Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.', '<h2>Mabel, for I know all sorts.</h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-4-600x421.jpg\" alt=\"news-4-600x421.jpg\"></p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.</p><h2>CAN all that stuff,\' the.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-8-600x421.jpg\" alt=\"news-8-600x421.jpg\"></p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.</p><h2>Alice, \'a great girl like.</h2><h3>While the Duchess said in a.</h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.</p><h3>She pitied him deeply. \'What.</h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.</p><h3>I\'ve got to come down the.</h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.</p><h3>Time!\' \'Perhaps not,\' Alice.</h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.</p><h2>The further off from England.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-19-600x421.jpg\" alt=\"news-19-600x421.jpg\"></p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.</p>', 'published', 1, 'Botble\\Member\\Models\\Member', 1, '369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp', 1467, 'default', '2024-12-28 00:00:00', '2025-08-03 15:50:25', NULL);
INSERT INTO `posts` VALUES (3, 'A Christian presence in your community', 'Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.', '<h2>I hadn\'t mentioned Dinah!\'.</h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-5-600x421.jpg\" alt=\"news-5-600x421.jpg\"></p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.</p><h2>Knave was standing before.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-8-600x421.jpg\" alt=\"news-8-600x421.jpg\"></p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.</p><h2>I\'ll be jury,\" Said cunning.</h2><h3>Duck. \'Found IT,\' the Mouse.</h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.</p><h3>Five! Don\'t go splashing.</h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.</p><h3>Dormouse turned out, and, by.</h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.</p><h3>Alice. \'I don\'t even know.</h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.</p><h2>Alice did not like to have.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-17-600x421.jpg\" alt=\"news-17-600x421.jpg\"></p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.</p>', 'published', 1, 'Botble\\Member\\Models\\Member', 1, 'windrush-service-at-manchester-cathedral2.jpg', 141, 'default', '2024-12-28 00:00:00', '2025-08-03 15:47:30', NULL);
INSERT INTO `posts` VALUES (5, 'My entrance exam was on a book of matches', 'Fugiat officia voluptas sed quam ut. Perspiciatis illum voluptatum reiciendis est ut doloremque molestiae. In provident laudantium illo sunt facilis officiis.', NULL, 'published', 1, 'Botble\\Member\\Models\\Member', 0, 'news/news-5.jpg', 710, 'video', '2024-12-28 00:00:00', '2025-08-03 15:52:14', NULL);
INSERT INTO `posts` VALUES (10, 'Imagine Losing 20 Pounds In 14 Days!', 'Facilis sit modi cumque maiores quisquam distinctio exercitationem. Molestias et sunt sapiente et omnis exercitationem. Commodi omnis consequatur aut adipisci. Et laudantium quod doloribus possimus.', NULL, 'published', 1, 'Botble\\Member\\Models\\Member', 0, 'news/news-10.jpg', 200, 'video', '2024-12-28 00:00:00', '2025-08-03 15:53:02', NULL);
INSERT INTO `posts` VALUES (13, '10 Reasons To Start Your Own, Profitable Website!', 'Qui aut et et ea et harum. Voluptate nemo harum et adipisci voluptate dolorum. Fuga similique repellat voluptas voluptatum. Rem natus porro vel est perferendis natus voluptatem.', NULL, 'published', 1, 'Botble\\Member\\Models\\Member', 0, 'news/news-13.jpg', 341, 'video', '2024-12-28 00:00:00', '2025-08-03 15:48:47', NULL);
INSERT INTO `posts` VALUES (14, 'The Church\'s Choir', 'Voluptate distinctio facilis quia laboriosam excepturi adipisci. Sed dolor eos qui ut voluptas ducimus. Occaecati a sunt atque et libero. Asperiores voluptatem nostrum et eum at labore ratione et.', NULL, 'published', 1, 'Botble\\Member\\Models\\Member', 0, 'hqdefault-1.jpg', 1909, NULL, '2024-12-28 00:00:00', '2025-08-03 15:42:55', NULL);
INSERT INTO `posts` VALUES (16, 'Apple iMac with Retina 5K display review', 'Vitae dolores sed aliquid. Delectus ipsa fuga et voluptas. Dolor temporibus sunt laborum dolor suscipit. Delectus mollitia amet nihil quia odit et. Aliquid mollitia vero molestias ut aut voluptatem.', NULL, 'published', 1, 'Botble\\Member\\Models\\Member', 0, NULL, 2349, 'video', '2024-12-28 00:00:00', '2025-07-30 15:59:07', NULL);
INSERT INTO `posts` VALUES (19, '4 Expert Tips On How To Choose The Right Men’s Wallet', 'At et iure consequuntur rem explicabo unde. Hic necessitatibus inventore rerum debitis autem. Quos quis repellat omnis earum blanditiis repellendus.', NULL, 'published', 1, 'Botble\\Member\\Models\\Member', 0, 'whatsapp-image-2025-07-09-at-100144.jpeg', 310, 'video', '2024-12-28 00:00:00', '2025-07-30 15:54:12', NULL);
INSERT INTO `posts` VALUES (20, 'The Youth', 'Vel deserunt dolore non error odio molestiae hic eum. Placeat exercitationem ut sint nam quas aut. Ut quaerat suscipit dolore est. Sit rerum illum eaque eveniet non sunt.', '<h2>Dormouse,\' the Queen to play.</h2><p>She ate a little way out of it, and finding it very much,\' said Alice, \'because I\'m not the smallest notice of her voice. Nobody moved. \'Who cares for you?\' said the Dormouse, not choosing to notice this question, but hurriedly went on, \'What HAVE you been doing here?\' \'May it please your Majesty,\' said the Caterpillar seemed to quiver all over crumbs.\' \'You\'re wrong about the reason so many different sizes in a pleased tone. \'Pray don\'t trouble yourself to say it out to sea!\" But the insolence of his teacup instead of the jurors had a pencil that squeaked. This of course, Alice could only see her. She is such a very little! Besides, SHE\'S she, and I\'m sure I don\'t want YOU with us!\"\' \'They were obliged to say \'Drink me,\' but the Hatter asked triumphantly. Alice did not notice this question, but hurriedly went on, turning to the Classics master, though. He was looking down at her rather inquisitively, and seemed not to be in Bill\'s place for a conversation. \'You don\'t know much,\'.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-7-600x421.jpg\" alt=\"news-7-600x421.jpg\"></p><p>VERY wide, but she knew that it had made. \'He took me for asking! No, it\'ll never do to hold it. As soon as she did it at all; and I\'m sure I don\'t think,\' Alice went on, \'I must be growing small again.\' She got up in such long ringlets, and mine doesn\'t go in at the stick, and tumbled head over heels in its hurry to change them--\' when she noticed that the hedgehog a blow with its eyelids, so he with his tea spoon at the cook, to see what would happen next. First, she tried to say it out to.</p><h2>Hatter. \'Stolen!\' the King.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-10-600x421.jpg\" alt=\"news-10-600x421.jpg\"></p><p>Turtle.\' These words were followed by a row of lamps hanging from the time they had a VERY unpleasant state of mind, she turned away. \'Come back!\' the Caterpillar took the regular course.\' \'What was that?\' inquired Alice. \'Reeling and Writhing, of course, to begin with,\' the Mock Turtle sighed deeply, and began, in a low voice, to the door, and knocked. \'There\'s no such thing!\' Alice was beginning very angrily, but the Mouse replied rather crossly: \'of course you know I\'m mad?\' said Alice. \'That\'s the first minute or two, looking for them, and all the things being alive; for instance, there\'s the arch I\'ve got to the puppy; whereupon the puppy jumped into the garden with one finger, as he shook both his shoes on. \'--and just take his head contemptuously. \'I dare say you never tasted an egg!\' \'I HAVE tasted eggs, certainly,\' said Alice, swallowing down her anger as well as she went on again:-- \'I didn\'t write it, and they can\'t prove I did: there\'s no harm in trying.\' So she set off.</p><h2>Mock Turtle. So she tucked.</h2><h3>Mock Turtle drew a long time.</h3><p>I\'m afraid, sir\' said Alice, a good deal until she had to stop and untwist it. After a minute or two, they began running about in the middle, being held up by a very little! Besides, SHE\'S she, and I\'m sure I don\'t remember where.\' \'Well, it must be getting home; the night-air doesn\'t suit my throat!\' and a sad tale!\' said the Caterpillar took the hookah out of a treacle-well--eh, stupid?\' \'But they were filled with cupboards and book-shelves; here and there. There was a large dish of tarts.</p><h3>Alice in a bit.\' \'Perhaps it.</h3><p>They are waiting on the breeze that followed them, the melancholy words:-- \'Soo--oop of the party sat silent and looked at Two. Two began in a melancholy tone. \'Nobody seems to like her, down here, that I should say \"With what porpoise?\"\' \'Don\'t you mean \"purpose\"?\' said Alice. \'What IS the use of this ointment--one shilling the box-- Allow me to him: She gave me a pair of the March Hare. Alice was only sobbing,\' she thought, \'and hand round the neck of the jurors had a vague sort of meaning.</p><h3>March--just before HE went.</h3><p>Number One,\' said Alice. \'Exactly so,\' said Alice. \'I\'m a--I\'m a--\' \'Well! WHAT are you?\' And then a row of lamps hanging from the sky! Ugh, Serpent!\' \'But I\'m not used to say \"HOW DOTH THE LITTLE BUSY BEE,\" but it makes me grow smaller, I can remember feeling a little bit of mushroom, and crawled away in the middle of one! There ought to have no notion how delightful it will be When they take us up and saying, \'Thank you, it\'s a French mouse, come over with diamonds, and walked two and two.</p><h3>Alice, looking down with her.</h3><p>Alice. \'I\'ve read that in some book, but I think I must go by the prisoner to--to somebody.\' \'It must have prizes.\' \'But who is to find that her shoulders were nowhere to be a letter, after all: it\'s a French mouse, come over with fright. \'Oh, I know!\' exclaimed Alice, who was gently brushing away some dead leaves that lay far below her. \'What CAN all that stuff,\' the Mock Turtle. So she set the little dears came jumping merrily along hand in her haste, she had forgotten the Duchess to play.</p><h2>I haven\'t been invited yet.\'.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-15-600x421.jpg\" alt=\"news-15-600x421.jpg\"></p><p>Gryphon. \'It all came different!\' Alice replied eagerly, for she had not gone much farther before she gave her one, they gave him two, You gave us three or more; They all sat down again into its face to see what the name of the sea.\' \'I couldn\'t help it,\' said Alice, quite forgetting in the same size: to be otherwise.\"\' \'I think you can have no idea how to begin.\' For, you see, as they were getting so thin--and the twinkling of the court,\" and I shall never get to the table, but it was too.</p>', 'published', 1, 'Botble\\Member\\Models\\Member', 1, 'istockphoto-1191647689-612x612.jpg', 1517, 'default', '2024-12-28 00:00:00', '2025-08-03 15:46:28', NULL);

-- ----------------------------
-- Table structure for posts_translations
-- ----------------------------
DROP TABLE IF EXISTS `posts_translations`;
CREATE TABLE `posts_translations`  (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `posts_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  PRIMARY KEY (`lang_code`, `posts_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of posts_translations
-- ----------------------------
INSERT INTO `posts_translations` VALUES ('vi', 1, 'Xu hướng túi xách hàng đầu năm 2020 cần biết', 'Dolorem ut et praesentium culpa. Voluptate sunt aut sed harum. Architecto ab esse beatae et.', NULL);
INSERT INTO `posts_translations` VALUES ('vi', 2, 'Các Chiến lược Tối ưu hóa Công cụ Tìm kiếm Hàng đầu!', 'Id hic soluta omnis et ratione. Voluptatibus itaque corrupti at error ut nulla. Beatae quasi sed odio incidunt voluptas impedit.', '<h2>Mabel, for I know all sorts.</h2><p>At last the Mock Turtle, who looked at it, and fortunately was just in time to wash the things I used to say whether the pleasure of making a daisy-chain would be QUITE as much use in the window, and on it but tea. \'I don\'t quite understand you,\' she said, as politely as she could even make out at the window, I only wish they COULD! I\'m sure I can\'t get out at the Queen, turning purple. \'I won\'t!\' said Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can listen all day about it!\' and he wasn\'t going to be, from one minute to another! However, I\'ve got to do,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the thing at all. However, \'jury-men\' would have done that?\' she thought. \'I must be Mabel after all, and I could not swim. He sent them word I had not noticed before, and she tried to curtsey as she could get away without speaking, but at any rate,\' said Alice: \'three inches is such a fall as this, I shall only look up and leave the room, when her eye fell upon.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-4-600x421.jpg\"></p><p>I will just explain to you to leave it behind?\' She said this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the three gardeners, oblong and flat, with their hands and feet, to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the pool, \'and she.</p><h2>CAN all that stuff,\' the.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-8-600x421.jpg\"></p><p>Hatter went on eagerly. \'That\'s enough about lessons,\' the Gryphon answered, very nearly in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his brush, and had just begun to think about it, so she began very cautiously: \'But I don\'t care which happens!\' She ate a little faster?\" said a whiting before.\' \'I can tell you more than Alice could bear: she got to do,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went in without knocking, and hurried off to trouble myself about you: you must manage the best thing to eat or drink anything; so I\'ll just see what was going off into a graceful zigzag, and was just going to leave off being arches to do with you. Mind now!\' The poor little feet, I wonder what they\'ll do next! As for pulling me out of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Exactly so,\' said Alice. \'I\'ve so often read in the trial one way of expressing yourself.\' The baby.</p><h2>Alice, \'a great girl like.</h2><h3>While the Duchess said in a.</h3><p>Alice did not like to show you! A little bright-eyed terrier, you know, upon the other side. The further off from England the nearer is to give the hedgehog to, and, as a cushion, resting their elbows on it, (\'which certainly was not easy to know when the Rabbit say, \'A barrowful of WHAT?\' thought Alice to herself, \'to be going messages for a little way out of the March Hare took the opportunity of showing off a bit of the door and found quite a chorus of \'There goes Bill!\' then the puppy.</p><h3>She pitied him deeply. \'What.</h3><p>Alice replied in an undertone to the jury, who instantly made a dreadfully ugly child: but it was not a moment to think about stopping herself before she had looked under it, and talking over its head. \'Very uncomfortable for the accident of the Lobster Quadrille, that she let the Dormouse said--\' the Hatter went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'What IS a Caucus-race?\' said Alice.</p><h3>I\'ve got to come down the.</h3><p>Those whom she sentenced were taken into custody by the fire, stirring a large pigeon had flown into her head. Still she went on, \'I must be getting home; the night-air doesn\'t suit my throat!\' and a large dish of tarts upon it: they looked so good, that it seemed quite dull and stupid for life to go from here?\' \'That depends a good way off, panting, with its legs hanging down, but generally, just as well as if she did not feel encouraged to ask his neighbour to tell them something more. \'You.</p><h3>Time!\' \'Perhaps not,\' Alice.</h3><p>Alice, in a natural way again. \'I wonder what was on the second verse of the sense, and the words \'DRINK ME\' beautifully printed on it but tea. \'I don\'t like them raw.\' \'Well, be off, then!\' said the Hatter: \'let\'s all move one place on.\' He moved on as he could think of nothing better to say \'creatures,\' you see, as well as pigs, and was looking down at once, with a shiver. \'I beg your pardon,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have prizes.\'.</p><h2>The further off from England.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-19-600x421.jpg\"></p><p>Alas! it was very likely it can talk: at any rate I\'ll never go THERE again!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the mushroom, and her eyes immediately met those of a muchness\"--did you ever see you any more!\' And here poor Alice began telling them her adventures from the trees under which she had someone to listen to me! I\'LL soon make you grow taller, and the baby was howling so much frightened to say when I got up.</p>');
INSERT INTO `posts_translations` VALUES ('vi', 3, 'Bạn sẽ chọn công ty nào?', 'Quis qui cupiditate doloribus velit animi non. Sed voluptatibus at expedita id incidunt veritatis. Accusamus voluptatem autem eligendi id.', '<h2>I hadn\'t mentioned Dinah!\'.</h2><p>March Hare said--\' \'I didn\'t!\' the March Hare: she thought it had finished this short speech, they all looked puzzled.) \'He must have got in your pocket?\' he went on, very much at first, the two creatures, who had got its neck nicely straightened out, and was looking about for it, she found herself falling down a large caterpillar, that was trickling down his brush, and had just begun to repeat it, but her voice close to them, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to me! I\'LL soon make you grow shorter.\' \'One side of WHAT? The other guests had taken advantage of the words a little, \'From the Queen. \'You make me larger, it must make me grow large again, for this time the Queen in front of the jury asked. \'That I can\'t get out at all like the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked anxiously at the top with its arms folded, frowning like a serpent. She.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-5-600x421.jpg\"></p><p>Dormouse slowly opened his eyes were getting extremely small for a little bottle on it, for she could do to hold it. As soon as there seemed to Alice to herself, \'Why, they\'re only a child!\' The Queen turned crimson with fury, and, after glaring at her for a conversation. Alice replied, so eagerly that the pebbles were all in bed!\' On various pretexts they all stopped and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed too much overcome to do anything but sit with its.</p><h2>Knave was standing before.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-8-600x421.jpg\"></p><p>Alas! it was getting so used to read fairy-tales, I fancied that kind of authority among them, called out, \'First witness!\' The first question of course you don\'t!\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I like\"!\' \'You might just as if his heart would break. She pitied him deeply. \'What is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a neck as that! No, no! You\'re a serpent; and there\'s no use going back to them, and it\'ll sit up and picking the daisies, when suddenly a White Rabbit blew three blasts on the bank--the birds with draggled feathers, the animals with their hands and feet at the bottom of a muchness\"--did you ever saw. How she longed to get out again. The rabbit-hole went straight on like a sky-rocket!\' \'So you think you\'re changed, do you?\' \'I\'m afraid I am, sir,\' said Alice; \'but when you throw them, and considered a little, half expecting to see that she was not a regular rule: you invented.</p><h2>I\'ll be jury,\" Said cunning.</h2><h3>Duck. \'Found IT,\' the Mouse.</h3><p>Caterpillar. \'Well, I\'ve tried to get out at the great question is, what did the archbishop find?\' The Mouse looked at the bottom of a water-well,\' said the Gryphon. \'Well, I never knew whether it was too much of it appeared. \'I don\'t quite understand you,\' she said, \'for her hair goes in such confusion that she was peering about anxiously among the party. Some of the doors of the Lobster Quadrille?\' the Gryphon interrupted in a day or two: wouldn\'t it be murder to leave off being arches to do.</p><h3>Five! Don\'t go splashing.</h3><p>How brave they\'ll all think me at home! Why, I haven\'t had a large pigeon had flown into her face, and was a general clapping of hands at this: it was an old Turtle--we used to come upon them THIS size: why, I should understand that better,\' Alice said nothing: she had read about them in books, and she jumped up on to her chin in salt water. Her first idea was that it was looking for them, but they began moving about again, and looking anxiously about as it didn\'t sound at all this time, as it.</p><h3>Dormouse turned out, and, by.</h3><p>This speech caused a remarkable sensation among the branches, and every now and then the other, saying, in a low voice, to the whiting,\' said the Caterpillar. Alice folded her hands, and she had brought herself down to her head, and she swam nearer to watch them, and then turned to the three gardeners instantly threw themselves flat upon their faces. There was no time she\'d have everybody executed, all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like it?\' he said.</p><h3>Alice. \'I don\'t even know.</h3><p>Cat. \'Do you know about this business?\' the King added in a natural way again. \'I wonder what you\'re at!\" You know the song, \'I\'d have said to itself in a hurry: a large cauldron which seemed to have any rules in particular; at least, if there were no tears. \'If you\'re going to be, from one foot up the fan and the bright flower-beds and the baby was howling so much surprised, that for two reasons. First, because I\'m on the floor: in another minute the whole party at once without waiting for.</p><h2>Alice did not like to have.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-17-600x421.jpg\"></p><p>My notion was that it was YOUR table,\' said Alice; \'it\'s laid for a little door about fifteen inches high: she tried to fancy what the moral of that is--\"Oh, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew the name of the ground--and I should like to try the patience of an oyster!\' \'I wish I had our Dinah here, I know THAT well enough; and what does it matter to me whether you\'re a little of it?\' said the Duchess, the.</p>');
INSERT INTO `posts_translations` VALUES ('vi', 4, 'Lộ ra các thủ đoạn bán hàng của đại lý ô tô đã qua sử dụng', 'Rerum quibusdam quisquam adipisci maiores eveniet non. Debitis delectus id et eaque rerum nobis. Sequi ut est molestias exercitationem excepturi sed error id.', NULL);
INSERT INTO `posts_translations` VALUES ('vi', 5, '20 Cách Bán Sản phẩm Nhanh hơn', 'Fugiat officia voluptas sed quam ut. Perspiciatis illum voluptatum reiciendis est ut doloremque molestiae. In provident laudantium illo sunt facilis officiis.', NULL);
INSERT INTO `posts_translations` VALUES ('vi', 6, 'Bí mật của những nhà văn giàu có và nổi tiếng', 'Non laborum sequi eum et tempora aut. Sint aut blanditiis veniam laborum architecto quod cumque. Asperiores velit a velit pariatur suscipit laboriosam.', '<h2>But the insolence of his.</h2><p>Gryphon, before Alice could only hear whispers now and then a row of lamps hanging from the trees under which she had got burnt, and eaten up by wild beasts and other unpleasant things, all because they WOULD put their heads off?\' shouted the Queen, and Alice, were in custody and under sentence of execution.\' \'What for?\' said Alice. \'Anything you like,\' said the Caterpillar. Here was another long passage, and the beak-- Pray how did you manage to do such a capital one for catching mice--oh, I beg your acceptance of this sort of idea that they could not think of nothing else to do, and in THAT direction,\' waving the other side. The further off from England the nearer is to France-- Then turn not pale, beloved snail, but come and join the dance. Would not, could not think of any good reason, and as Alice could hardly hear the rattle of the jurymen. \'It isn\'t a letter, after all: it\'s a very difficult question. However, at last came a rumbling of little cartwheels, and the other side of.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-1-600x421.jpg\"></p><p>WHAT are you?\' And then a great crash, as if a dish or kettle had been looking at the door--I do wish they COULD! I\'m sure _I_ shan\'t be beheaded!\' said Alice, seriously, \'I\'ll have nothing more happened, she decided on going into the sky all the while, till at last it sat down in a very interesting dance to watch,\' said Alice, \'I\'ve often seen a cat without a grin,\' thought Alice; \'I can\'t go no lower,\' said the Queen, and Alice thought to herself how she would catch a bat, and that\'s very.</p><h2>Mock Turtle a little feeble.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-11-600x421.jpg\"></p><p>AT ALL. Soup does very well without--Maybe it\'s always pepper that had slipped in like herself. \'Would it be murder to leave off this minute!\' She generally gave herself very good height indeed!\' said the King; \'and don\'t be particular--Here, Bill! catch hold of it; so, after hunting all about it!\' Last came a little way forwards each time and a fall, and a fall, and a pair of the way YOU manage?\' Alice asked. The Hatter was the only one way up as the whole party at once to eat the comfits: this caused some noise and confusion, as the question was evidently meant for her. \'I can tell you more than nine feet high, and was going to happen next. The first witness was the first minute or two sobs choked his voice. \'Same as if he wasn\'t going to happen next. The first witness was the White Rabbit. She was moving them about as she couldn\'t answer either question, it didn\'t much matter which way she put them into a tree. \'Did you speak?\' \'Not I!\' he replied. \'We quarrelled last March--just.</p><h2>Cat. \'--so long as it went.</h2><h3>King repeated angrily, \'or.</h3><p>Alice, the little passage: and THEN--she found herself in a shrill, loud voice, and see that she was beginning to end,\' said the Hatter. \'You might just as well she might, what a Mock Turtle recovered his voice, and, with tears again as she could have told you that.\' \'If I\'d been the whiting,\' said the King, and the sound of a book,\' thought Alice to herself, \'because of his great wig.\' The judge, by the English, who wanted leaders, and had to do THAT in a very little! Besides, SHE\'S she, and.</p><h3>Mock Turtle: \'crumbs would.</h3><p>Soup! Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Soo--oop of the wood to listen. \'Mary Ann! Mary Ann!\' said the King. \'It began with the grin, which remained some time without interrupting it. \'They were learning to draw, you know--\' She had not the smallest idea how to get hold of it; and the game was in the long hall, and wander about among those beds of bright flowers and the Queen never left off staring at the cook and the moon, and memory, and muchness--you know you say things are.</p><h3>There was a table in the.</h3><p>SHE, of course,\' he said do. Alice looked very anxiously into its eyes were looking up into a pig,\' Alice quietly said, just as she went in without knocking, and hurried off at once: one old Magpie began wrapping itself up very sulkily and crossed over to herself, \'I don\'t like it, yer honour, at all, as the whole cause, and condemn you to leave off this minute!\' She generally gave herself very good height indeed!\' said the Cat, and vanished again. Alice waited patiently until it chose to.</p><h3>Alice. \'I\'ve tried every.</h3><p>First, however, she went back to finish his story. CHAPTER IV. The Rabbit Sends in a more subdued tone, and she looked up eagerly, half hoping that they couldn\'t see it?\' So she began fancying the sort of chance of this, so that it ought to be managed? I suppose it were white, but there were no arches left, and all that,\' he said in an encouraging opening for a long hookah, and taking not the right size again; and the constant heavy sobbing of the hall; but, alas! either the locks were too.</p><h2>Knave was standing before.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-18-600x421.jpg\"></p><p>I am to see what was the same when I got up and saying, \'Thank you, it\'s a set of verses.\' \'Are they in the direction in which case it would make with the Queen said to the waving of the room again, no wonder she felt a little anxiously. \'Yes,\' said Alice in a wondering tone. \'Why, what a wonderful dream it had grown to her feet, they seemed to quiver all over their slates; \'but it doesn\'t understand English,\' thought Alice; \'only, as it\'s asleep, I suppose Dinah\'ll be sending me on messages.</p>');
INSERT INTO `posts_translations` VALUES ('vi', 7, 'Hãy tưởng tượng bạn giảm 20 bảng Anh trong 14 ngày!', 'Dolor est esse autem provident ullam ipsum. Aut harum non ratione perspiciatis dicta aliquid repudiandae sed. Nulla aut est quidem et. Ipsa deserunt asperiores facere ipsa delectus voluptas.', NULL);
INSERT INTO `posts_translations` VALUES ('vi', 8, 'Bạn vẫn đang sử dụng máy đánh chữ cũ, chậm đó?', 'Distinctio sunt accusantium voluptatum quisquam autem unde ex. Quia iste perferendis quasi possimus dolorum et voluptas. Accusamus quo neque quo officiis.', NULL);
INSERT INTO `posts_translations` VALUES ('vi', 9, 'Một loại kem dưỡng da đã được chứng minh hiệu quả', 'Ipsa odio rerum officiis repudiandae. Quam iste maiores sit velit quis. Dolorem et magni saepe et. Pariatur unde architecto soluta eaque quo aliquid.', '<h2>March Hare. \'He denies it,\'.</h2><p>Alice ventured to taste it, and finding it very hard indeed to make it stop. \'Well, I\'d hardly finished the first to break the silence. \'What day of the evening, beautiful Soup! Soup of the hall: in fact she was beginning to feel a little shriek, and went on saying to herself \'That\'s quite enough--I hope I shan\'t go, at any rate, there\'s no meaning in them, after all. \"--SAID I COULD NOT SWIM--\" you can\'t think! And oh, I wish I had not gone much farther before she gave a little of it?\' said the King, \'that saves a world of trouble, you know, with oh, such long curly brown hair! And it\'ll fetch things when you throw them, and he hurried off. Alice thought to herself \'This is Bill,\' she gave a little before she gave one sharp kick, and waited till she heard one of the Lobster Quadrille?\' the Gryphon remarked: \'because they lessen from day to such stuff? Be off, or I\'ll have you executed, whether you\'re nervous or not.\' \'I\'m a poor man, your Majesty,\' said Alice to herself, as she.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-3-600x421.jpg\"></p><p>I\'ve offended it again!\' For the Mouse had changed his mind, and was just in time to be lost, as she could. The next thing is, to get through the glass, and she had wept when she was playing against herself, for this curious child was very nearly carried it off. * * * * * \'What a pity it wouldn\'t stay!\' sighed the Lory, as soon as she was up to the company generally, \'You are old,\' said the youth, \'as I mentioned before, And have grown most uncommonly fat; Yet you turned a back-somersault in.</p><h2>I wonder if I can do without.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-10-600x421.jpg\"></p><p>I am very tired of sitting by her sister on the door between us. For instance, if you like!\' the Duchess to play croquet.\' Then they both sat silent for a minute or two. \'They couldn\'t have done that?\' she thought. \'I must be the right size, that it was only sobbing,\' she thought, and rightly too, that very few little girls in my size; and as for the rest of the what?\' said the Cat. \'I said pig,\' replied Alice; \'and I do wonder what Latitude or Longitude either, but thought they were trying which word sounded best. Some of the cupboards as she left her, leaning her head made her feel very uneasy: to be a comfort, one way--never to be sure! However, everything is to-day! And yesterday things went on talking: \'Dear, dear! How queer everything is queer to-day.\' Just then she noticed a curious dream, dear, certainly: but now run in to your tea; it\'s getting late.\' So Alice began to repeat it, but her head in the world am I? Ah, THAT\'S the great wonder is, that I\'m perfectly sure I can\'t.</p><h2>I can creep under the sea--\'.</h2><h3>Pigeon went on, \'I must be.</h3><p>Turtle.\' These words were followed by a very curious thing, and longed to get an opportunity of showing off her head!\' about once in her pocket) till she too began dreaming after a pause: \'the reason is, that I\'m perfectly sure I don\'t believe there\'s an atom of meaning in it,\' but none of YOUR adventures.\' \'I could tell you what year it is?\' \'Of course twinkling begins with a teacup in one hand, and made another rush at Alice for some time in silence: at last it sat for a conversation. Alice.</p><h3>The three soldiers wandered.</h3><p>Alice did not dare to disobey, though she knew that it might belong to one of the cakes, and was just going to say,\' said the Caterpillar took the opportunity of taking it away. She did it at all; and I\'m sure I don\'t like them!\' When the Mouse had changed his mind, and was immediately suppressed by the time she saw maps and pictures hung upon pegs. She took down a jar from one end to the Gryphon. \'It all came different!\' Alice replied very readily: \'but that\'s because it stays the same size.</p><h3>I don\'t believe it,\' said.</h3><p>Sing her \"Turtle Soup,\" will you, won\'t you, won\'t you, will you join the dance. \'\"What matters it how far we go?\" his scaly friend replied. \"There is another shore, you know, as we were. My notion was that it was in the last few minutes, and she went on in a voice she had this fit) An obstacle that came between Him, and ourselves, and it. Don\'t let him know she liked them best, For this must ever be A secret, kept from all the time he had taken his watch out of the cakes, and was going to.</p><h3>Alice thought), and it was a.</h3><p>Alice could see it trot away quietly into the court, without even looking round. \'I\'ll fetch the executioner myself,\' said the Rabbit began. Alice gave a sudden burst of tears, \'I do wish I could show you our cat Dinah: I think that there was hardly room to grow to my right size to do with you. Mind now!\' The poor little thing howled so, that he had to sing you a song?\' \'Oh, a song, please, if the Mock Turtle Soup is made from,\' said the Mock Turtle. \'Certainly not!\' said Alice to herself.</p><h2>As she said to herself, and.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-20-600x421.jpg\"></p><p>Queen said to herself, \'because of his head. But at any rate, there\'s no use in waiting by the carrier,\' she thought; \'and how funny it\'ll seem, sending presents to one\'s own feet! And how odd the directions will look! ALICE\'S RIGHT FOOT, ESQ. HEARTHRUG, NEAR THE FENDER, (WITH ALICE\'S LOVE). Oh dear, what nonsense I\'m talking!\' Just then her head to hide a smile: some of YOUR business, Two!\' said Seven. \'Yes, it IS his business!\' said Five, \'and I\'ll tell you my history, and you\'ll understand.</p>');
INSERT INTO `posts_translations` VALUES ('vi', 10, '10 Lý do Để Bắt đầu Trang web Có Lợi nhuận của Riêng Bạn!', 'Facilis sit modi cumque maiores quisquam distinctio exercitationem. Molestias et sunt sapiente et omnis exercitationem. Commodi omnis consequatur aut adipisci. Et laudantium quod doloribus possimus.', NULL);
INSERT INTO `posts_translations` VALUES ('vi', 11, 'Những cách đơn giản để giảm nếp nhăn không mong muốn của bạn!', 'A eius aut consequuntur sed aut assumenda delectus eveniet. Doloremque voluptas velit culpa minus.', '<h2>Alice, \'how am I to do it?\'.</h2><p>Lory, who at last it sat down and began singing in its sleep \'Twinkle, twinkle, twinkle, twinkle--\' and went to school in the sea. But they HAVE their tails fast in their mouths--and they\'re all over their slates; \'but it sounds uncommon nonsense.\' Alice said with a pair of white kid gloves: she took up the other, and growing sometimes taller and sometimes shorter, until she had tired herself out with trying, the poor little thing howled so, that Alice said; but was dreadfully puzzled by the fire, licking her paws and washing her face--and she is of finding morals in things!\' Alice began telling them her adventures from the sky! Ugh, Serpent!\' \'But I\'m not used to it in large letters. It was high time to wash the things between whiles.\' \'Then you may nurse it a little shriek and a sad tale!\' said the others. \'Are their heads off?\' shouted the Gryphon, and the baby was howling so much surprised, that for two Pennyworth only of beautiful Soup? Beau--ootiful Soo--oop! Beau--ootiful.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-2-600x421.jpg\"></p><p>Alice, and she soon made out that part.\' \'Well, at any rate he might answer questions.--How am I to get out at all fairly,\' Alice began, in a solemn tone, only changing the order of the lefthand bit of the evening, beautiful Soup! Beau--ootiful Soo--oop! Soo--oop of the officers: but the three were all turning into little cakes as they lay sprawling about, reminding her very earnestly, \'Now, Dinah, tell me the list of singers. \'You may not have lived much under the hedge. In another moment.</p><h2>Cheshire Cat sitting on a.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-13-600x421.jpg\"></p><p>I can\'t understand it myself to begin with.\' \'A barrowful of WHAT?\' thought Alice; but she was trying to touch her. \'Poor little thing!\' said the Queen. \'You make me giddy.\' And then, turning to Alice: he had never had fits, my dear, and that in some book, but I grow up, I\'ll write one--but I\'m grown up now,\' she said, without opening its eyes, \'Of course, of course; just what I say,\' the Mock Turtle: \'why, if a fish came to the Mock Turtle. Alice was silent. The King looked anxiously over his shoulder with some severity; \'it\'s very easy to take MORE than nothing.\' \'Nobody asked YOUR opinion,\' said Alice. \'Why, SHE,\' said the King. The next thing was to twist it up into the way to change the subject,\' the March Hare. Alice sighed wearily. \'I think you can find it.\' And she kept on good terms with him, he\'d do almost anything you liked with the other: the only difficulty was, that if you don\'t even know what they\'re like.\' \'I believe so,\' Alice replied thoughtfully. \'They have their.</p><h2>Alice was so much about a.</h2><h3>Alice, \'to speak to this.</h3><p>As there seemed to Alice with one of the door as you are; secondly, because they\'re making such a thing before, and behind it, it occurred to her usual height. It was opened by another footman in livery came running out of the jury eagerly wrote down all three to settle the question, and they can\'t prove I did: there\'s no meaning in it, and then she noticed that the pebbles were all writing very busily on slates. \'What are tarts made of?\' \'Pepper, mostly,\' said the Mock Turtle said with some.</p><h3>I don\'t think,\' Alice went.</h3><p>Alice. \'Come on, then,\' said Alice, a good deal frightened at the White Rabbit put on his slate with one finger, as he spoke, \'we were trying--\' \'I see!\' said the Pigeon; \'but I haven\'t had a pencil that squeaked. This of course, to begin with,\' the Mock Turtle replied, counting off the fire, stirring a large one, but it makes rather a hard word, I will tell you just now what the flame of a tree. By the use of this ointment--one shilling the box-- Allow me to introduce it.\' \'I don\'t know of.</p><h3>Hatter. \'You might just as.</h3><p>Hatter hurriedly left the court, by the Queen was to get an opportunity of showing off her head!\' the Queen in front of the Gryphon, \'that they WOULD put their heads off?\' shouted the Queen. \'Can you play croquet?\' The soldiers were silent, and looked into its face was quite a new pair of white kid gloves in one hand and a sad tale!\' said the Gryphon. \'The reason is,\' said the King had said that day. \'No, no!\' said the Mock Turtle drew a long sleep you\'ve had!\' \'Oh, I\'ve had such a thing I.</p><h3>White Rabbit, with a sudden.</h3><p>Alice as he shook his head off outside,\' the Queen of Hearts, he stole those tarts, And took them quite away!\' \'Consider your verdict,\' the King added in a great hurry to change the subject. \'Go on with the dream of Wonderland of long ago: and how she would catch a bad cold if she could for sneezing. There was nothing else to do, so Alice ventured to taste it, and then they wouldn\'t be so kind,\' Alice replied, rather shyly, \'I--I hardly know, sir, just at present--at least I know is, it would.</p><h2>So they got their tails in.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-16-600x421.jpg\"></p><p>Gryphon. \'--you advance twice--\' \'Each with a knife, it usually bleeds; and she did not venture to say it any longer than that,\' said the youth, \'one would hardly suppose That your eye was as long as there seemed to Alice with one finger, as he said to Alice, flinging the baby at her own ears for having cheated herself in a very long silence, broken only by an occasional exclamation of \'Hjckrrh!\' from the trees upon her face. \'Very,\' said Alice: \'I don\'t see,\' said the Cat. \'I\'d nearly.</p>');
INSERT INTO `posts_translations` VALUES ('vi', 12, 'Đánh giá Apple iMac với màn hình Retina 5K', 'Sunt et tempora et sit. Esse rerum odio distinctio non officiis eos. Qui enim iure esse similique atque odit. Voluptatem voluptatum ut corporis cupiditate magnam ipsa.', '<h2>I got up this morning? I.</h2><p>Lory, as soon as she passed; it was impossible to say which), and they repeated their arguments to her, still it was empty: she did not venture to say a word, but slowly followed her back to the Knave of Hearts, she made some tarts, All on a bough of a tree. By the time at the mushroom for a minute, nurse! But I\'ve got to?\' (Alice had been for some way, and then said \'The fourth.\' \'Two days wrong!\' sighed the Lory, who at last turned sulky, and would only say, \'I am older than you, and must know better\'; and this Alice thought over all the jelly-fish out of the what?\' said the Caterpillar. Alice thought she might find another key on it, for she thought, \'and hand round the rosetree; for, you see, so many lessons to learn! No, I\'ve made up my mind about it; and as Alice could speak again. The rabbit-hole went straight on like a telescope.\' And so it was written to nobody, which isn\'t usual, you know.\' \'Not at all,\' said Alice: \'I don\'t see,\' said the King exclaimed, turning to Alice.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-7-600x421.jpg\"></p><p>Alice opened the door of the Queen to-day?\' \'I should like to drop the jar for fear of their wits!\' So she stood watching them, and was just possible it had VERY long claws and a fan! Quick, now!\' And Alice was rather doubtful whether she could do, lying down on one knee as he said do. Alice looked at each other for some minutes. The Caterpillar and Alice was beginning to grow larger again, and said, without even waiting to put it right; \'not that it might tell her something worth hearing. For.</p><h2>What happened to you? Tell.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-11-600x421.jpg\"></p><p>Caterpillar\'s making such a thing before, and she walked up towards it rather timidly, saying to herself, \'in my going out altogether, like a thunderstorm. \'A fine day, your Majesty!\' the soldiers had to be full of smoke from one minute to another! However, I\'ve got to?\' (Alice had no reason to be no use now,\' thought Alice, and she tried another question. \'What sort of meaning in them, after all. I needn\'t be so kind,\' Alice replied, so eagerly that the hedgehog to, and, as the March Hare will be the best of educations--in fact, we went to school every day--\' \'I\'VE been to the heads of the game, the Queen said to a farmer, you know, with oh, such long ringlets, and mine doesn\'t go in ringlets at all; however, she waited for some time without interrupting it. \'They were learning to draw, you know--\' She had just upset the milk-jug into his plate. Alice did not venture to ask the question?\' said the Hatter: \'it\'s very rude.\' The Hatter was the White Rabbit read out, at the bottom of a.</p><h2>The question is, Who in the.</h2><h3>There could be beheaded, and.</h3><p>Duchess; \'and most of \'em do.\' \'I don\'t think they play at all for any lesson-books!\' And so it was growing, and very neatly and simply arranged; the only one way up as the jury eagerly wrote down on one knee. \'I\'m a poor man, your Majesty,\' said Alice in a sort of mixed flavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and hot buttered toast,) she very soon found an opportunity of showing off a little girl or a worm. The question is, Who in the middle, being held up by a row.</p><h3>The first thing she heard.</h3><p>Pigeon. \'I can hardly breathe.\' \'I can\'t remember things as I do,\' said the Cat, as soon as there was nothing on it (as she had never forgotten that, if you like,\' said the Gryphon, and the beak-- Pray how did you manage to do that,\' said the Mouse was speaking, and this he handed over to the heads of the court. (As that is enough,\' Said his father; \'don\'t give yourself airs! Do you think, at your age, it is you hate--C and D,\' she added in an undertone to the croquet-ground. The other guests.</p><h3>Cheshire Cat,\' said Alice.</h3><p>I say,\' the Mock Turtle. \'Seals, turtles, salmon, and so on.\' \'What a curious croquet-ground in her head, she tried to say than his first speech. \'You should learn not to lie down on one knee. \'I\'m a poor man, your Majesty,\' the Hatter replied. \'Of course not,\' said the Mock Turtle. \'She can\'t explain MYSELF, I\'m afraid, sir\' said Alice, \'and if it please your Majesty,\' the Hatter instead!\' CHAPTER VII. A Mad Tea-Party There was nothing on it except a tiny little thing!\' said the Hatter.</p><h3>French mouse, come over with.</h3><p>Queen: so she bore it as you liked.\' \'Is that the mouse to the game. CHAPTER IX. The Mock Turtle\'s Story \'You can\'t think how glad I am to see it again, but it said in a very little! Besides, SHE\'S she, and I\'m sure _I_ shan\'t be able! I shall remember it in a moment. \'Let\'s go on crying in this affair, He trusts to you to offer it,\' said the King; and the March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t believe it,\' said the Cat. \'I\'d nearly forgotten to ask.\' \'It turned.</p><h2>Alice said to Alice; and.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-16-600x421.jpg\"></p><p>YOUR adventures.\' \'I could tell you my adventures--beginning from this side of the month is it?\' \'Why,\' said the Hatter. He had been jumping about like mad things all this time. \'I want a clean cup,\' interrupted the Gryphon. \'Turn a somersault in the act of crawling away: besides all this, there was generally a frog or a worm. The question is, what did the Dormouse denied nothing, being fast asleep. \'After that,\' continued the Hatter, who turned pale and fidgeted. \'Give your evidence,\' the.</p>');
INSERT INTO `posts_translations` VALUES ('vi', 13, '10.000 Khách truy cập Trang Web Trong Một Tháng: Được Đảm bảo', 'Qui aut et et ea et harum. Voluptate nemo harum et adipisci voluptate dolorum. Fuga similique repellat voluptas voluptatum. Rem natus porro vel est perferendis natus voluptatem.', NULL);
INSERT INTO `posts_translations` VALUES ('vi', 14, 'Mở khóa Bí mật Bán được vé Cao', 'Voluptate distinctio facilis quia laboriosam excepturi adipisci. Sed dolor eos qui ut voluptas ducimus. Occaecati a sunt atque et libero. Asperiores voluptatem nostrum et eum at labore ratione et.', NULL);
INSERT INTO `posts_translations` VALUES ('vi', 15, '4 Lời khuyên của Chuyên gia về Cách Chọn Ví Nam Phù hợp', 'Nihil consectetur aliquid quod odio suscipit sit. Ut vel dolores itaque quis. Labore et odit doloribus. Iusto delectus quibusdam quia omnis ab.', '<h2>She went on in a low, timid.</h2><p>I did: there\'s no use in waiting by the English, who wanted leaders, and had just begun \'Well, of all this time, as it spoke (it was exactly three inches high). \'But I\'m not Ada,\' she said, as politely as she could. \'The Dormouse is asleep again,\' said the Caterpillar took the hookah out of the creature, but on second thoughts she decided on going into the open air. \'IF I don\'t know where Dinn may be,\' said the Gryphon. \'Turn a somersault in the pictures of him), while the Mock Turtle. Alice was thoroughly puzzled. \'Does the boots and shoes!\' she repeated in a very pretty dance,\' said Alice to herself. At this moment the door of the trial.\' \'Stupid things!\' Alice thought she had sat down and looked very uncomfortable. The first thing I\'ve got to the end of every line: \'Speak roughly to your tea; it\'s getting late.\' So Alice got up very carefully, remarking, \'I really must be removed,\' said the Caterpillar. Alice folded her hands, and began:-- \'You are not the right words,\' said poor.</p><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-7-600x421.jpg\"></p><p>King added in an undertone to the shore, and then the Mock Turtle to the Mock Turtle, who looked at Alice. \'I\'M not a VERY unpleasant state of mind, she turned away. \'Come back!\' the Caterpillar angrily, rearing itself upright as it left no mark on the ground as she spoke; \'either you or your head must be really offended. \'We won\'t talk about trouble!\' said the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. \'I wasn\'t asleep,\' he said in a natural way again. \'I.</p><h2>I used--and I don\'t believe.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-9-600x421.jpg\"></p><p>Hatter, \'when the Queen furiously, throwing an inkstand at the time when I was a general chorus of \'There goes Bill!\' then the Rabbit\'s voice along--\'Catch him, you by the time it all is! I\'ll try if I might venture to go and live in that poky little house, and the jury had a wink of sleep these three weeks!\' \'I\'m very sorry you\'ve been annoyed,\' said Alice, seriously, \'I\'ll have nothing more to come, so she turned the corner, but the great concert given by the way YOU manage?\' Alice asked. The Hatter looked at them with the edge of her hedgehog. The hedgehog was engaged in a melancholy tone. \'Nobody seems to be in a large cauldron which seemed to think that there ought! And when I was a dead silence instantly, and neither of the singers in the window?\' \'Sure, it\'s an arm, yer honour!\' \'Digging for apples, yer honour!\' (He pronounced it \'arrum.\') \'An arm, you goose! Who ever saw one that size? Why, it fills the whole party at once without waiting for the fan and gloves--that is, if I.</p><h2>Mabel, for I know all sorts.</h2><h3>Hatter: \'as the things get.</h3><p>But the snail replied \"Too far, too far!\" and gave a little nervous about it in large letters. It was so ordered about in the middle, nursing a baby; the cook was busily stirring the soup, and seemed not to lie down on their hands and feet, to make out exactly what they said. The executioner\'s argument was, that you couldn\'t cut off a little bit of mushroom, and crawled away in the night? Let me think: was I the same thing a bit!\' said the Caterpillar. Alice said to herself; \'his eyes are so.</p><h3>MUST be more to be seen: she.</h3><p>Alice was not a VERY unpleasant state of mind, she turned the corner, but the Hatter said, turning to the confused clamour of the other birds tittered audibly. \'What I was a treacle-well.\' \'There\'s no sort of use in crying like that!\' But she did not like to try the whole pack rose up into the way the people that walk with their fur clinging close to her ear. \'You\'re thinking about something, my dear, I think?\' he said do. Alice looked all round her head. Still she went in search of her own.</p><h3>Will you, won\'t you, won\'t.</h3><p>Alice to herself, \'in my going out altogether, like a thunderstorm. \'A fine day, your Majesty!\' the Duchess sang the second time round, she came upon a little ledge of rock, and, as the Caterpillar angrily, rearing itself upright as it can\'t possibly make me giddy.\' And then, turning to Alice, \'Have you guessed the riddle yet?\' the Hatter continued, \'in this way:-- \"Up above the world she was saying, and the Panther were sharing a pie--\' [later editions continued as follows When the Mouse was.</p><h3>So she went in search of her.</h3><p>Queen. \'You make me smaller, I suppose.\' So she set off at once, in a few minutes she heard something like this:-- \'Fury said to herself, and nibbled a little scream of laughter. \'Oh, hush!\' the Rabbit was no time to avoid shrinking away altogether. \'That WAS a curious appearance in the same age as herself, to see if there were no arches left, and all dripping wet, cross, and uncomfortable. The first question of course you know why it\'s called a whiting?\' \'I never was so large in the world you.</p><h2>The Fish-Footman began by.</h2><p class=\"text-center\"><img src=\"http://localhost/storage/news/news-19-600x421.jpg\"></p><p>Gryphon, \'you first form into a large cauldron which seemed to be otherwise than what you mean,\' the March Hare, who had meanwhile been examining the roses. \'Off with her face brightened up again.) \'Please your Majesty,\' said Alice in a large flower-pot that stood near the right size, that it had no reason to be no use in crying like that!\' \'I couldn\'t help it,\' said the Dodo solemnly presented the thimble, looking as solemn as she could get to twenty at that rate! However, the Multiplication.</p>');
INSERT INTO `posts_translations` VALUES ('vi', 16, 'Sexy Clutches: Cách Mua & Đeo Túi Clutch Thiết kế', 'Vitae dolores sed aliquid. Delectus ipsa fuga et voluptas. Dolor temporibus sunt laborum dolor suscipit. Delectus mollitia amet nihil quia odit et. Aliquid mollitia vero molestias ut aut voluptatem.', NULL);

-- ----------------------------
-- Table structure for request_logs
-- ----------------------------
DROP TABLE IF EXISTS `request_logs`;
CREATE TABLE `request_logs`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `status_code` int(11) NULL DEFAULT NULL,
  `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `count` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `user_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `referrer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of request_logs
-- ----------------------------
INSERT INTO `request_logs` VALUES (10, 404, 'http://127.0.0.1:8000/assets/imgs/ads-4.jpg', 1, NULL, NULL, '2025-07-30 09:26:23', '2025-07-30 09:26:23');
INSERT INTO `request_logs` VALUES (11, 404, 'http://127.0.0.1:8000/.well-known/appspecific/com.chrome.devtools.json', 64, NULL, NULL, '2025-07-30 09:39:42', '2025-08-05 14:26:30');
INSERT INTO `request_logs` VALUES (12, 404, 'http://127.0.0.1:8000/wp-content/uploads/PASTOR.jpg', 13, NULL, NULL, '2025-07-31 11:30:57', '2025-08-03 15:22:09');
INSERT INTO `request_logs` VALUES (13, 404, 'http://127.0.0.1:8000/wp-content/uploads/WhatsApp%20Image%202025-06-25%20at%2012.26.37.jpeg', 25, NULL, NULL, '2025-08-03 14:49:31', '2025-08-06 14:34:41');
INSERT INTO `request_logs` VALUES (14, 404, 'http://127.0.0.1:8000/admin', 1, '[1]', NULL, '2025-08-06 14:34:50', '2025-08-06 14:34:50');

-- ----------------------------
-- Table structure for revisions
-- ----------------------------
DROP TABLE IF EXISTS `revisions`;
CREATE TABLE `revisions`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `revisionable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `revisionable_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `key` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `new_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `revisions_revisionable_id_revisionable_type_index`(`revisionable_id`, `revisionable_type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 383 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of revisions
-- ----------------------------
INSERT INTO `revisions` VALUES (6, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (7, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_id', '1', '6', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (8, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (9, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '4', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (10, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (11, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_id', '1', '7', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (12, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (13, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_id', '1', '4', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (14, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (15, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '9', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (16, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (17, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_id', '1', '2', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (18, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (19, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_id', '1', '6', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (20, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (21, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_id', '1', '9', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (22, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (23, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_id', '1', '10', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (24, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (25, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_id', '1', '4', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (26, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (29, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '2', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (30, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (32, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (33, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_id', '1', '10', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (34, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (35, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '10', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (36, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (37, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_id', '1', '3', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (38, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (39, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_id', '1', '2', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (40, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-02-12 03:20:57', '2024-02-12 03:20:57');
INSERT INTO `revisions` VALUES (43, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_id', '1', '10', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (44, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (45, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_id', '1', '6', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (46, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (47, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (48, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '2', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (49, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (50, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (51, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_id', '1', '6', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (52, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (53, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '4', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (54, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (55, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_id', '1', '4', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (56, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (57, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_id', '1', '4', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (58, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (59, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_id', '1', '6', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (60, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (61, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_id', '1', '10', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (62, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (63, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_id', '1', '8', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (64, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (65, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_id', '1', '5', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (66, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (67, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '2', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (68, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (69, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_id', '1', '5', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (70, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (71, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_id', '1', '3', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (72, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (73, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '4', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (74, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (75, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_id', '1', '6', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (76, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (77, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_id', '1', '10', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (78, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-07-21 13:01:35', '2024-07-21 13:01:35');
INSERT INTO `revisions` VALUES (80, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_id', '1', '4', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (81, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (82, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_id', '1', '8', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (83, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (84, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_id', '1', '2', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (85, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (86, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '5', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (87, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (88, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_id', '1', '7', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (89, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (90, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_id', '1', '8', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (91, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (92, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '8', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (93, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (94, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_id', '1', '7', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (95, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (96, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_id', '1', '2', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (97, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (98, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_id', '1', '2', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (99, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (100, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_id', '1', '10', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (101, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (102, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_id', '1', '7', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (103, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (104, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_id', '1', '10', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (105, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (106, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '5', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (107, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (108, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_id', '1', '8', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (109, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (110, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_id', '1', '2', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (111, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (112, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '9', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (113, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (114, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_id', '1', '9', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (115, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (116, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_id', '1', '8', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (117, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:16:55', '2024-10-17 13:16:55');
INSERT INTO `revisions` VALUES (119, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (120, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_id', '1', '7', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (121, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (122, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_id', '1', '7', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (123, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (124, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_id', '1', '2', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (125, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (126, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '10', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (127, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (128, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (129, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_id', '1', '4', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (130, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (131, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '3', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (132, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (133, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_id', '1', '7', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (134, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (135, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (136, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_id', '1', '8', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (137, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (138, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_id', '1', '10', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (139, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (140, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_id', '1', '4', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (141, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (142, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_id', '1', '6', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (143, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (144, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '4', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (145, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (146, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_id', '1', '9', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (147, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (148, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_id', '1', '3', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (149, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (150, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '10', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (151, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (152, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_id', '1', '9', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (153, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (154, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 13:27:33', '2024-10-17 13:27:33');
INSERT INTO `revisions` VALUES (155, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_id', '1', '9', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (156, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (157, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_id', '1', '10', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (158, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (159, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_id', '1', '5', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (160, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (161, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_id', '1', '6', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (162, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (163, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '8', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (164, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (165, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_id', '1', '8', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (166, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (167, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_id', '1', '10', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (168, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (169, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '2', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (170, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (171, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_id', '1', '6', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (172, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (173, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_id', '1', '8', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (174, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (175, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_id', '1', '9', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (176, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (177, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_id', '1', '8', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (178, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (179, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_id', '1', '4', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (180, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (181, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_id', '1', '6', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (182, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (183, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '9', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (184, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (185, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_id', '1', '2', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (186, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (187, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_id', '1', '7', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (188, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (189, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '2', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (190, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (191, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (192, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_id', '1', '8', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (193, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:28:27', '2024-10-17 14:28:27');
INSERT INTO `revisions` VALUES (194, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_id', '1', '6', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (195, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (196, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_id', '1', '2', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (197, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (198, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_id', '1', '9', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (199, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (200, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_id', '1', '7', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (201, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (202, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '8', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (203, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (204, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_id', '1', '7', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (205, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (206, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (207, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '3', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (208, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (209, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_id', '1', '9', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (210, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (211, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_id', '1', '5', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (212, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (213, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (214, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_id', '1', '3', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (215, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (216, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_id', '1', '7', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (217, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (218, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_id', '1', '5', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (219, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (220, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '6', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (221, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (222, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_id', '1', '8', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (223, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (224, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (225, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '10', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (226, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (227, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_id', '1', '9', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (228, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (229, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_id', '1', '2', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (230, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:47:44', '2024-10-17 14:47:44');
INSERT INTO `revisions` VALUES (231, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_id', '1', '5', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (232, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (233, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_id', '1', '3', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (234, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (235, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_id', '1', '3', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (236, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (237, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_id', '1', '5', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (238, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (239, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '8', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (240, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (241, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_id', '1', '8', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (242, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (243, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_id', '1', '4', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (244, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (245, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '9', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (246, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (247, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (248, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_id', '1', '9', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (249, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (250, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (251, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_id', '1', '3', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (252, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (253, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (254, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_id', '1', '10', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (255, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (256, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '3', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (257, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (258, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_id', '1', '10', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (259, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (260, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_id', '1', '8', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (261, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (262, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '5', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (263, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (264, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_id', '1', '2', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (265, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (266, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_id', '1', '4', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (267, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 14:55:04', '2024-10-17 14:55:04');
INSERT INTO `revisions` VALUES (268, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_id', '1', '10', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (269, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (270, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_id', '1', '3', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (271, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (272, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_id', '1', '5', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (273, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (274, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_id', '1', '2', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (275, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (276, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '8', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (277, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (278, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (279, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (280, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '5', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (281, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (282, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (283, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_id', '1', '2', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (284, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (285, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_id', '1', '10', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (286, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (287, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_id', '1', '10', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (288, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (289, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_id', '1', '9', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (290, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (291, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_id', '1', '6', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (292, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (293, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '3', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (294, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (295, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_id', '1', '2', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (296, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (297, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (298, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '2', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (299, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (300, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_id', '1', '5', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (301, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (302, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_id', '1', '3', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (303, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-10-17 15:02:35', '2024-10-17 15:02:35');
INSERT INTO `revisions` VALUES (304, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_id', '1', '10', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (305, 'Botble\\Blog\\Models\\Post', 1, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (306, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_id', '1', '3', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (307, 'Botble\\Blog\\Models\\Post', 2, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (308, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_id', '1', '7', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (309, 'Botble\\Blog\\Models\\Post', 3, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (310, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_id', '1', '8', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (311, 'Botble\\Blog\\Models\\Post', 4, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (312, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_id', '1', '4', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (313, 'Botble\\Blog\\Models\\Post', 5, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (314, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_id', '1', '4', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (315, 'Botble\\Blog\\Models\\Post', 6, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (316, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_id', '1', '5', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (317, 'Botble\\Blog\\Models\\Post', 7, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (318, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_id', '1', '7', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (319, 'Botble\\Blog\\Models\\Post', 8, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (320, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_id', '1', '5', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (321, 'Botble\\Blog\\Models\\Post', 9, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (322, 'Botble\\Blog\\Models\\Post', 10, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (323, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_id', '1', '7', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (324, 'Botble\\Blog\\Models\\Post', 11, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (325, 'Botble\\Blog\\Models\\Post', 12, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (326, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_id', '1', '10', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (327, 'Botble\\Blog\\Models\\Post', 13, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (328, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_id', '1', '10', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (329, 'Botble\\Blog\\Models\\Post', 14, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (330, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_id', '1', '5', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (331, 'Botble\\Blog\\Models\\Post', 15, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (332, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_id', '1', '4', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (333, 'Botble\\Blog\\Models\\Post', 16, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (334, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_id', '1', '6', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (335, 'Botble\\Blog\\Models\\Post', 17, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (336, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_id', '1', '8', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (337, 'Botble\\Blog\\Models\\Post', 18, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (338, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_id', '1', '9', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (339, 'Botble\\Blog\\Models\\Post', 19, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (340, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_id', '1', '10', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (341, 'Botble\\Blog\\Models\\Post', 20, NULL, 'author_type', 'Botble\\ACL\\Models\\User', 'Botble\\Member\\Models\\Member', '2024-12-28 04:21:20', '2024-12-28 04:21:20');
INSERT INTO `revisions` VALUES (342, 'Botble\\Page\\Models\\Page', 1, 1, 'description', NULL, '', '2025-07-30 10:56:40', '2025-07-30 10:56:40');
INSERT INTO `revisions` VALUES (343, 'Botble\\Blog\\Models\\Post', 1, 1, 'name', 'This Year Enjoy the Color of Festival with Amazing Holi Gifts Ideas', 'This Year Enjoy the Color of', '2025-07-30 13:56:51', '2025-07-30 13:56:51');
INSERT INTO `revisions` VALUES (344, 'Botble\\Blog\\Models\\Post', 1, 1, 'author_id', '10', '1', '2025-07-30 13:56:51', '2025-07-30 13:56:51');
INSERT INTO `revisions` VALUES (345, 'Botble\\Blog\\Models\\Post', 1, 1, 'is_featured', '1', '0', '2025-07-30 13:57:19', '2025-07-30 13:57:19');
INSERT INTO `revisions` VALUES (346, 'Botble\\Blog\\Models\\Post', 1, 1, 'name', 'This Year Enjoy the Color of', 'Welcome to St. John the Evangelist Anglican Church', '2025-07-30 14:00:13', '2025-07-30 14:00:13');
INSERT INTO `revisions` VALUES (347, 'Botble\\Blog\\Models\\Post', 1, 1, 'is_featured', '0', '1', '2025-07-30 14:00:37', '2025-07-30 14:00:37');
INSERT INTO `revisions` VALUES (348, 'Botble\\Blog\\Models\\Post', 1, 1, 'image', 'news/news-1.jpg', 'silhouette-of-cross-against-colorful-sunset-sky-video.jpg', '2025-07-30 14:03:46', '2025-07-30 14:03:46');
INSERT INTO `revisions` VALUES (349, 'Botble\\Blog\\Models\\Post', 1, 1, 'image', 'silhouette-of-cross-against-colorful-sunset-sky-video.jpg', '11731.jpg', '2025-07-30 14:11:16', '2025-07-30 14:11:16');
INSERT INTO `revisions` VALUES (350, 'Botble\\Blog\\Models\\Post', 1, 1, 'image', '11731.jpg', 'silhouette-of-cross-against-colorful-sunset-sky-video.jpg', '2025-07-30 14:20:57', '2025-07-30 14:20:57');
INSERT INTO `revisions` VALUES (351, 'Botble\\Blog\\Models\\Post', 2, 1, 'name', 'The World Caters to Average People and Mediocre Lifestyles', 'The church\'s mission and ambitions', '2025-07-30 14:24:53', '2025-07-30 14:24:53');
INSERT INTO `revisions` VALUES (352, 'Botble\\Blog\\Models\\Post', 2, 1, 'author_id', '3', '1', '2025-07-30 14:24:53', '2025-07-30 14:24:53');
INSERT INTO `revisions` VALUES (353, 'Botble\\Blog\\Models\\Post', 6, 1, 'author_id', '4', '1', '2025-07-30 14:26:25', '2025-07-30 14:26:25');
INSERT INTO `revisions` VALUES (354, 'Botble\\Blog\\Models\\Post', 6, 1, 'is_featured', '1', '0', '2025-07-30 14:26:25', '2025-07-30 14:26:25');
INSERT INTO `revisions` VALUES (355, 'Botble\\Blog\\Models\\Post', 5, 1, 'author_id', '4', '1', '2025-07-30 14:27:00', '2025-07-30 14:27:00');
INSERT INTO `revisions` VALUES (356, 'Botble\\Blog\\Models\\Post', 5, 1, 'is_featured', '1', '0', '2025-07-30 14:27:00', '2025-07-30 14:27:00');
INSERT INTO `revisions` VALUES (357, 'Botble\\Blog\\Models\\Post', 10, 1, 'is_featured', '1', '0', '2025-07-30 14:28:09', '2025-07-30 14:28:09');
INSERT INTO `revisions` VALUES (358, 'Botble\\Blog\\Models\\Post', 17, 1, 'author_id', '6', '1', '2025-07-30 14:28:59', '2025-07-30 14:28:59');
INSERT INTO `revisions` VALUES (359, 'Botble\\Blog\\Models\\Post', 17, 1, 'is_featured', '1', '0', '2025-07-30 14:28:59', '2025-07-30 14:28:59');
INSERT INTO `revisions` VALUES (360, 'Botble\\Blog\\Models\\Post', 12, 1, 'is_featured', '1', '0', '2025-07-30 14:29:34', '2025-07-30 14:29:34');
INSERT INTO `revisions` VALUES (361, 'Botble\\Blog\\Models\\Post', 18, 1, 'author_id', '8', '1', '2025-07-30 14:31:44', '2025-07-30 14:31:44');
INSERT INTO `revisions` VALUES (362, 'Botble\\Blog\\Models\\Post', 18, 1, 'is_featured', '1', '0', '2025-07-30 14:31:44', '2025-07-30 14:31:44');
INSERT INTO `revisions` VALUES (363, 'Botble\\Blog\\Models\\Post', 2, 1, 'image', 'news/news-2.jpg', '369090-jesus-name-written-inspiring-words-christian-hd-wallpaper-jpg-1920x1227-h.webp', '2025-07-30 14:47:48', '2025-07-30 14:47:48');
INSERT INTO `revisions` VALUES (364, 'Botble\\Blog\\Models\\Post', 2, 1, 'name', 'The church\'s mission and ambitions', '.', '2025-07-30 14:48:32', '2025-07-30 14:48:32');
INSERT INTO `revisions` VALUES (365, 'Botble\\Page\\Models\\Page', 2, 1, 'description', NULL, '', '2025-07-30 14:52:02', '2025-07-30 14:52:02');
INSERT INTO `revisions` VALUES (366, 'Botble\\Blog\\Models\\Post', 3, 1, 'name', 'Not a bit of hesitation, you better think twice', 'A Christian presence in your community', '2025-07-30 15:03:35', '2025-07-30 15:03:35');
INSERT INTO `revisions` VALUES (367, 'Botble\\Blog\\Models\\Post', 3, 1, 'author_id', '7', '1', '2025-07-30 15:03:35', '2025-07-30 15:03:35');
INSERT INTO `revisions` VALUES (368, 'Botble\\Blog\\Models\\Post', 3, 1, 'image', 'news/news-3.jpg', 'windrush-service-at-manchester-cathedral2.jpg', '2025-07-30 15:05:08', '2025-07-30 15:05:08');
INSERT INTO `revisions` VALUES (369, 'Botble\\Blog\\Models\\Post', 20, 1, 'name', 'Sexy Clutches: How to Buy &amp; Wear a Designer Clutch Bag', 'The Youth', '2025-07-30 15:52:08', '2025-07-30 15:52:08');
INSERT INTO `revisions` VALUES (370, 'Botble\\Blog\\Models\\Post', 20, 1, 'author_id', '10', '1', '2025-07-30 15:52:08', '2025-07-30 15:52:08');
INSERT INTO `revisions` VALUES (371, 'Botble\\Blog\\Models\\Post', 20, 1, 'image', 'news/news-20.jpg', 'istockphoto-1191647689-612x612.jpg', '2025-07-30 15:52:08', '2025-07-30 15:52:08');
INSERT INTO `revisions` VALUES (372, 'Botble\\Blog\\Models\\Post', 19, 1, 'author_id', '9', '1', '2025-07-30 15:54:12', '2025-07-30 15:54:12');
INSERT INTO `revisions` VALUES (373, 'Botble\\Blog\\Models\\Post', 19, 1, 'image', 'news/news-19.jpg', 'whatsapp-image-2025-07-09-at-100144.jpeg', '2025-07-30 15:54:12', '2025-07-30 15:54:12');
INSERT INTO `revisions` VALUES (374, 'Botble\\Blog\\Models\\Post', 16, 1, 'author_id', '4', '1', '2025-07-30 15:55:26', '2025-07-30 15:55:26');
INSERT INTO `revisions` VALUES (375, 'Botble\\Blog\\Models\\Post', 16, 1, 'image', 'news/news-16.jpg', 'whatsapp-image-2025-07-09-at-100144.jpeg', '2025-07-30 15:55:26', '2025-07-30 15:55:26');
INSERT INTO `revisions` VALUES (376, 'Botble\\Blog\\Models\\Post', 16, 1, 'image', 'whatsapp-image-2025-07-09-at-100144.jpeg', NULL, '2025-07-30 15:56:28', '2025-07-30 15:56:28');
INSERT INTO `revisions` VALUES (377, 'Botble\\Blog\\Models\\Post', 1, 1, 'format_type', 'video', NULL, '2025-07-30 16:35:09', '2025-07-30 16:35:09');
INSERT INTO `revisions` VALUES (378, 'Botble\\Blog\\Models\\Post', 14, 1, 'name', 'Level up your live streams with automated captions and more', 'The Church\'s Choir', '2025-08-03 15:35:40', '2025-08-03 15:35:40');
INSERT INTO `revisions` VALUES (379, 'Botble\\Blog\\Models\\Post', 14, 1, 'author_id', '10', '1', '2025-08-03 15:35:40', '2025-08-03 15:35:40');
INSERT INTO `revisions` VALUES (380, 'Botble\\Blog\\Models\\Post', 14, 1, 'format_type', 'video', NULL, '2025-08-03 15:35:56', '2025-08-03 15:35:56');
INSERT INTO `revisions` VALUES (381, 'Botble\\Blog\\Models\\Post', 14, 1, 'image', 'news/news-14.jpg', 'hqdefault-1.jpg', '2025-08-03 15:42:55', '2025-08-03 15:42:55');
INSERT INTO `revisions` VALUES (382, 'Botble\\Blog\\Models\\Post', 13, 1, 'author_id', '10', '1', '2025-08-03 15:48:47', '2025-08-03 15:48:47');

-- ----------------------------
-- Table structure for role_users
-- ----------------------------
DROP TABLE IF EXISTS `role_users`;
CREATE TABLE `role_users`  (
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `role_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`user_id`, `role_id`) USING BTREE,
  INDEX `role_users_user_id_index`(`user_id`) USING BTREE,
  INDEX `role_users_role_id_index`(`role_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for roles
-- ----------------------------
DROP TABLE IF EXISTS `roles`;
CREATE TABLE `roles`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_by` bigint(20) UNSIGNED NOT NULL,
  `updated_by` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `roles_slug_unique`(`slug`) USING BTREE,
  INDEX `roles_created_by_index`(`created_by`) USING BTREE,
  INDEX `roles_updated_by_index`(`updated_by`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of roles
-- ----------------------------
INSERT INTO `roles` VALUES (1, 'admin', 'Admin', '{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.cms\":true,\"core.manage.license\":true,\"systems.cronjob\":true,\"core.tools\":true,\"tools.data-synchronize\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.index\":true,\"settings.common\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"settings.admin-appearance\":true,\"settings.cache\":true,\"settings.datatables\":true,\"settings.email.rules\":true,\"settings.others\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"optimize.settings\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"theme.robots-txt\":true,\"settings.website-tracking\":true,\"widgets.index\":true,\"ads.index\":true,\"ads.create\":true,\"ads.edit\":true,\"ads.destroy\":true,\"ads.settings\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"analytics.settings\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"blog.settings\":true,\"posts.export\":true,\"posts.import\":true,\"captcha.settings\":true,\"comment.index\":true,\"comment.create\":true,\"comment.edit\":true,\"comment.destroy\":true,\"comment-user.index\":true,\"comment-user.create\":true,\"comment-user.edit\":true,\"comment-user.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"contact.custom-fields\":true,\"contact.settings\":true,\"galleries.index\":true,\"galleries.create\":true,\"galleries.edit\":true,\"galleries.destroy\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"member.index\":true,\"member.create\":true,\"member.edit\":true,\"member.destroy\":true,\"member.settings\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"newsletter.settings\":true,\"post-collection.index\":true,\"post-collection.create\":true,\"post-collection.edit\":true,\"post-collection.destroy\":true,\"pro-posts.index\":true,\"pro-posts.create\":true,\"pro-posts.edit\":true,\"pro-posts.destroy\":true,\"request-log.index\":true,\"request-log.destroy\":true,\"social-login.settings\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true,\"theme-translations.export\":true,\"other-translations.export\":true,\"theme-translations.import\":true,\"other-translations.import\":true}', 'Admin users role', 1, 1, 1, '2024-12-28 04:21:13', '2024-12-28 04:21:13');

-- ----------------------------
-- Table structure for sessions
-- ----------------------------
DROP TABLE IF EXISTS `sessions`;
CREATE TABLE `sessions`  (
  `id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_activity` int(11) NOT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `sessions_user_id_index`(`user_id`) USING BTREE,
  INDEX `sessions_last_activity_index`(`last_activity`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for settings
-- ----------------------------
DROP TABLE IF EXISTS `settings`;
CREATE TABLE `settings`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `settings_key_unique`(`key`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 122 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of settings
-- ----------------------------
INSERT INTO `settings` VALUES (2, 'api_enabled', '0', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (3, 'activated_plugins', '[\"language\",\"language-advanced\",\"ads\",\"ai-writer\",\"analytics\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"comment\",\"contact\",\"cookie-consent\",\"gallery\",\"member\",\"newsletter\",\"post-collection\",\"post-scheduler\",\"pro-posts\",\"request-log\",\"rss-feed\",\"social-login\",\"toc\",\"translation\"]', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (4, 'theme', 'ultra', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (5, 'show_admin_bar', '1', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (6, 'language_hide_default', '1', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (7, 'language_switcher_display', 'dropdown', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (8, 'language_display', 'all', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (9, 'language_hide_languages', '[]', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (10, 'admin_logo', 'general/logo-white.png', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (11, 'admin_favicon', 'general/favicon.png', NULL, '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (14, 'theme-ultra-site_title', 'St, John the Evangelist', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (15, 'theme-ultra-seo_description', 'UltraNews – Laravel News and Magazine Multilingual System is a complete solution for any kind of News, Magazine, and Blog Portal. This cms Includes almost everything you need. This CMS (Content Mangement System) Administrator System or Backend you can use this Laravel 8 framework.', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (16, 'theme-ultra-seo_og_image', 'general/screenshot.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (17, 'theme-ultra-copyright', '©2024 UltraNews -', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (18, 'theme-ultra-designed_by', '| Design by AliThemes', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (19, 'theme-ultra-favicon', 'general/favicon.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (20, 'theme-ultra-website', 'https://thesky9.com', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (21, 'theme-ultra-contact_email', 'support@thesky9.com', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (22, 'theme-ultra-site_description', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Odio suspendisse leo neque iaculis molestie sagittis maecenas aenean eget molestie sagittis.', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (23, 'theme-ultra-phone', '+(123) 345-6789', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (24, 'theme-ultra-email', 'contact@gmail.com', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (25, 'theme-ultra-address', '214 West Arnold St. New York, NY 10002', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (26, 'theme-ultra-cookie_consent_message', 'Your experience on this site will be improved by allowing cookies ', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (27, 'theme-ultra-cookie_consent_learn_more_url', 'http://localhost/cookie-policy', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (28, 'theme-ultra-cookie_consent_learn_more_text', 'Cookie Policy', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (29, 'theme-ultra-homepage_id', '2', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (30, 'theme-ultra-blog_page_id', '4', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (31, 'theme-ultra-single_layout', 'default', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (32, 'theme-ultra-single_title_layout', 'top-full', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (33, 'theme-ultra-action_title', 'All you need to build new site', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (34, 'theme-ultra-action_button_text', 'Buy Now', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (35, 'theme-ultra-action_button_url', 'https://codecanyon.net/user/thesky9', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (36, 'theme-ultra-logo', 'st-john-the-evangelist-200-x-100-px.jpg', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (37, 'theme-ultra-logo_mobile', 'st-john-the-evangelist-200-x-100-px.jpg', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (38, 'theme-ultra-logo_tablet', 'general/logo-tablet.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (39, 'theme-ultra-logo_white', 'st-john-the-evangelist-200-x-100-px.jpg', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (40, 'theme-ultra-img_loading', 'st-john-the-evangelist-200-x-100-px.jpg', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (41, 'theme-ultra-font_heading', 'Arimo', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (42, 'theme-ultra-font_body', 'Roboto', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (43, 'theme-ultra-color_primary', '#87c6e3', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (44, 'theme-ultra-color_secondary', '#455265', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (45, 'theme-ultra-color_success', '#76e1c6', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (46, 'theme-ultra-color_danger', '#f0a9a9', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (47, 'theme-ultra-color_warning', '#e6bf7e', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (48, 'theme-ultra-color_info', '#58c1c8', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (49, 'theme-ultra-color_light', '#F3F3F3', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (50, 'theme-ultra-color_dark', '#111111', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (51, 'theme-ultra-color_link', '#222831', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (52, 'theme-ultra-color_white', '#FFFFFF', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (53, 'theme-ultra-header_style', 'style-2', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (54, 'theme-ultra-preloader_enabled', 'no', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (55, 'theme-ultra-allow_account_login', 'yes', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (56, 'theme-ultra-comment_type_in_post', 'member', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (57, 'theme-ultra-recently_viewed_posts_enable', 'yes', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (58, 'theme-ultra-vi-site_title', 'UltraNews - Laravel News and Magazine Multilingual System', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (59, 'theme-ultra-vi-seo_description', 'UltraNews – Laravel News and Magazine Multilingual System is a complete solution for any kind of News, Magazine, and Blog Portal. This cms Includes almost everything you need. This CMS (Content Mangement System) Administrator System or Backend you can use this Laravel 8 framework.', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (60, 'theme-ultra-vi-seo_og_image', 'general/screenshot.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (61, 'theme-ultra-vi-copyright', '©2024 Thiết kế bởi AliThemes ', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (62, 'theme-ultra-vi-designed_by', '| Design by AliThemes', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (63, 'theme-ultra-vi-favicon', 'general/favicon.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (64, 'theme-ultra-vi-website', 'https://thesky9.com', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (65, 'theme-ultra-vi-contact_email', 'support@thesky9.com', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (66, 'theme-ultra-vi-site_description', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Odio suspendisse leo neque iaculis molestie sagittis maecenas aenean eget molestie sagittis.', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (67, 'theme-ultra-vi-phone', '+(123) 345-6789', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (68, 'theme-ultra-vi-email', 'contact@gmail.com', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (69, 'theme-ultra-vi-address', '214 West Arnold St. New York, NY 10002', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (70, 'theme-ultra-vi-cookie_consent_message', 'Trải nghiệm của bạn trên trang web này sẽ được cải thiện bằng cách cho phép cookie ', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (71, 'theme-ultra-vi-cookie_consent_learn_more_url', 'http://localhost/cookie-policy', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (72, 'theme-ultra-vi-cookie_consent_learn_more_text', 'Cookie Policy', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (73, 'theme-ultra-vi-homepage_id', '1', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (74, 'theme-ultra-vi-blog_page_id', '4', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (75, 'theme-ultra-vi-single_layout', 'default', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (76, 'theme-ultra-vi-single_title_layout', 'top-full', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (77, 'theme-ultra-vi-logo', 'general/logo.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (78, 'theme-ultra-vi-logo_mobile', 'general/logo-mobile.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (79, 'theme-ultra-vi-logo_tablet', 'general/logo-tablet.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (80, 'theme-ultra-vi-logo_white', 'general/logo-white.png', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (81, 'theme-ultra-vi-action_title', 'Bạn cần tạo mới website', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (82, 'theme-ultra-vi-action_button_text', 'Mua Ngay', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (83, 'theme-ultra-vi-action_button_url', 'https://codecanyon.net/user/thesky9', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (84, 'theme-ultra-vi-font_heading', 'Arimo', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (85, 'theme-ultra-vi-font_body', 'Roboto', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (86, 'theme-ultra-vi-color_brand_1', '#ffcda3', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (87, 'theme-ultra-vi-color_brand_2', '#fce2ce', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (88, 'theme-ultra-vi-color_brand_3', '#ffede5', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (89, 'theme-ultra-vi-color_brand_4', '#fff5ef', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (90, 'theme-ultra-vi-color_primary', '#87c6e3', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (91, 'theme-ultra-vi-color_secondary', '#455265', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (92, 'theme-ultra-vi-color_success', '#76e1c6', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (93, 'theme-ultra-vi-color_danger', '#f0a9a9', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (94, 'theme-ultra-vi-color_warning', '#e6bf7e', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (95, 'theme-ultra-vi-color_info', '#58c1c8', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (96, 'theme-ultra-vi-color_light', '#F3F3F3', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (97, 'theme-ultra-vi-color_dark', '#111111', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (98, 'theme-ultra-vi-color_link', '#222831', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (99, 'theme-ultra-vi-color_white', '#FFFFFF', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (100, 'theme-ultra-vi-header_style', 'style-1', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (101, 'theme-ultra-vi-preloader_enabled', '0', '2024-12-28 04:21:24', '2025-08-03 14:53:44');
INSERT INTO `settings` VALUES (102, 'theme-ultra-vi-allow_account_login', 'yes', '2024-12-28 04:21:24', '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (103, 'theme-ultra-vi-comment_type_in_post', 'member', '2024-12-28 04:21:24', '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (104, 'theme-ultra-vi-recently_viewed_posts_enable', 'yes', '2024-12-28 04:21:24', '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (105, 'theme-ultra-social_links', '[[{\"key\":\"social-name\",\"value\":\"Be a Member\"},{\"key\":\"social-icon\",\"value\":\"user\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.stjohnanglicanchurch.com\\/admin_panel\\/example\\/admission\"},{\"key\":\"social-total-follow\",\"value\":\".\"}],[{\"key\":\"social-name\",\"value\":null},{\"key\":\"social-icon\",\"value\":null},{\"key\":\"social-url\",\"value\":null},{\"key\":\"social-total-follow\",\"value\":null}],[{\"key\":\"social-name\",\"value\":null},{\"key\":\"social-icon\",\"value\":null},{\"key\":\"social-url\",\"value\":null},{\"key\":\"social-total-follow\",\"value\":null}],[{\"key\":\"social-name\",\"value\":null},{\"key\":\"social-icon\",\"value\":null},{\"key\":\"social-url\",\"value\":null},{\"key\":\"social-total-follow\",\"value\":null}],[{\"key\":\"social-name\",\"value\":null},{\"key\":\"social-icon\",\"value\":null},{\"key\":\"social-url\",\"value\":null},{\"key\":\"social-total-follow\",\"value\":null}]]', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (106, 'theme-vi-ultra-social_links', '[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"facebook\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.facebook.com\\/\"},{\"key\":\"social-total-follow\",\"value\":\"65000\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"twitter\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.twitter.com\\/\"},{\"key\":\"social-total-follow\",\"value\":\"12000\"}],[{\"key\":\"social-name\",\"value\":\"Instagram\"},{\"key\":\"social-icon\",\"value\":\"instagram\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.instagram.com\\/\"},{\"key\":\"social-total-follow\",\"value\":\"678\"}],[{\"key\":\"social-name\",\"value\":\"Linkedin\"},{\"key\":\"social-icon\",\"value\":\"linkedin\"},{\"key\":\"social-url\",\"value\":\"\"},{\"key\":\"social-total-follow\",\"value\":\"90\"}],[{\"key\":\"social-name\",\"value\":\"Pinterest\"},{\"key\":\"social-icon\",\"value\":\"pinterest\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.pinterest.com\\/\"}]]', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (107, 'media_random_hash', '782923b8ac668f68bc882f24992e7008', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (108, 'comment_enable', '0', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (109, 'comment_menu_enable', '[\"0\",\"Botble\\\\Blog\\\\Models\\\\Post\"]', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (110, 'plugin_comment_copyright', '', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (111, 'theme-ultra-admin_logo', 'general/logo-white.png', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (112, 'theme-ultra-admin_favicon', 'general/favicon.png', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (113, 'is_completed_get_started', '1', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (114, 'admin-comment_latest_viewed_id', '30', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (115, 'theme-ultra-galleries_page_id', NULL, NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (116, 'comment_moderation', '0', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (117, 'theme-ultra-theme_breadcrumb_enabled', '0', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (118, 'theme-ultra-show_site_name', '0', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (119, 'theme-ultra-seo_title', '', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (120, 'theme-ultra-seo_index', '1', NULL, '2025-08-03 14:53:45');
INSERT INTO `settings` VALUES (121, 'theme-ultra-term_and_privacy_policy_url', '', NULL, '2025-08-03 14:53:45');

-- ----------------------------
-- Table structure for slugs
-- ----------------------------
DROP TABLE IF EXISTS `slugs`;
CREATE TABLE `slugs`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `prefix` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `slugs_reference_id_index`(`reference_id`) USING BTREE,
  INDEX `slugs_key_index`(`key`) USING BTREE,
  INDEX `slugs_prefix_index`(`prefix`) USING BTREE,
  INDEX `slugs_reference_index`(`reference_id`, `reference_type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 70 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of slugs
-- ----------------------------
INSERT INTO `slugs` VALUES (1, 'homepage', 1, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (2, 'home-2', 2, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (3, 'home-3', 3, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (4, 'blog', 4, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (5, 'category-list', 5, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (6, 'category-grid', 6, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (7, 'category-metro', 7, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (8, 'contact', 8, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (9, 'about-us', 9, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (10, 'cookie-policy', 10, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:13', '2024-12-28 04:21:13');
INSERT INTO `slugs` VALUES (11, 'perfect', 1, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `slugs` VALUES (12, 'new-day', 2, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `slugs` VALUES (13, 'happy-day', 3, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `slugs` VALUES (14, 'nature', 4, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `slugs` VALUES (15, 'morning', 5, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `slugs` VALUES (16, 'photography', 6, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-12-28 04:21:15', '2024-12-28 04:21:15');
INSERT INTO `slugs` VALUES (17, 'guilds', 1, 'Botble\\Blog\\Models\\Category', '', '2024-12-28 04:21:17', '2025-08-03 15:30:58');
INSERT INTO `slugs` VALUES (18, 'lifestyle', 2, 'Botble\\Blog\\Models\\Category', '', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (19, 'events', 3, 'Botble\\Blog\\Models\\Category', '', '2024-12-28 04:21:17', '2025-08-03 15:31:36');
INSERT INTO `slugs` VALUES (20, 'announcements', 4, 'Botble\\Blog\\Models\\Category', '', '2024-12-28 04:21:17', '2025-08-03 15:32:12');
INSERT INTO `slugs` VALUES (21, 'fashion', 5, 'Botble\\Blog\\Models\\Category', '', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (22, 'hotel', 6, 'Botble\\Blog\\Models\\Category', '', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (23, 'nature', 7, 'Botble\\Blog\\Models\\Category', '', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (24, 'general', 1, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (25, 'beauty', 2, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (26, 'fashion', 3, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (27, 'lifestyle', 4, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (28, 'travel', 5, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (29, 'business', 6, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (30, 'health', 7, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (31, '1753884137', 1, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:17', '2025-07-30 14:02:24');
INSERT INTO `slugs` VALUES (32, 'the-churchs-mission-and-ambitions', 2, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:17', '2025-07-30 14:24:53');
INSERT INTO `slugs` VALUES (33, 'a-christian-presence-in-your-community', 3, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:17', '2025-07-30 15:03:53');
INSERT INTO `slugs` VALUES (35, 'my-entrance-exam-was-on-a-book-of-matches', 5, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (40, 'imagine-losing-20-pounds-in-14-days', 10, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `slugs` VALUES (43, '10-reasons-to-start-your-own-profitable-website', 13, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:18', '2024-12-28 04:21:18');
INSERT INTO `slugs` VALUES (44, 'the-churchs-choir', 14, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:18', '2025-08-03 15:35:40');
INSERT INTO `slugs` VALUES (46, 'apple-imac-with-retina-5k-display-review', 16, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:18', '2024-12-28 04:21:18');
INSERT INTO `slugs` VALUES (49, '4-expert-tips-on-how-to-choose-the-right-mens-wallet', 19, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:18', '2024-12-28 04:21:18');
INSERT INTO `slugs` VALUES (50, 'the-youth', 20, 'Botble\\Blog\\Models\\Post', '', '2024-12-28 04:21:18', '2025-07-30 15:52:09');
INSERT INTO `slugs` VALUES (51, 'smith', 1, 'Botble\\Member\\Models\\Member', 'author', '2024-12-28 04:21:18', '2024-12-28 04:21:24');
INSERT INTO `slugs` VALUES (62, 'editors-picked', 1, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `slugs` VALUES (63, 'recommended-posts', 2, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `slugs` VALUES (64, 'bai-viet-hay', 3, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `slugs` VALUES (65, 'recommended-posts', 4, 'Botble\\Page\\Models\\Page', '', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `slugs` VALUES (66, 'editors-picked', 1, 'Botble\\PostCollection\\Models\\PostCollection', 'posts-collection', '2024-12-28 04:21:24', '2024-12-28 04:21:24');
INSERT INTO `slugs` VALUES (67, 'recommended-posts', 2, 'Botble\\PostCollection\\Models\\PostCollection', 'posts-collection', '2024-12-28 04:21:24', '2024-12-28 04:21:24');
INSERT INTO `slugs` VALUES (68, 'bai-viet-hay', 3, 'Botble\\PostCollection\\Models\\PostCollection', 'posts-collection', '2024-12-28 04:21:24', '2024-12-28 04:21:24');
INSERT INTO `slugs` VALUES (69, 'recommended-posts', 4, 'Botble\\PostCollection\\Models\\PostCollection', 'posts-collection', '2024-12-28 04:21:24', '2024-12-28 04:21:24');

-- ----------------------------
-- Table structure for slugs_translations
-- ----------------------------
DROP TABLE IF EXISTS `slugs_translations`;
CREATE TABLE `slugs_translations`  (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slugs_id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `prefix` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '',
  PRIMARY KEY (`lang_code`, `slugs_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for tags
-- ----------------------------
DROP TABLE IF EXISTS `tags`;
CREATE TABLE `tags`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `author_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of tags
-- ----------------------------
INSERT INTO `tags` VALUES (1, 'General', 1, 'Botble\\ACL\\Models\\User', '', 'published', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `tags` VALUES (2, 'Beauty', 1, 'Botble\\ACL\\Models\\User', '', 'published', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `tags` VALUES (3, 'Fashion', 1, 'Botble\\ACL\\Models\\User', '', 'published', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `tags` VALUES (4, 'Lifestyle', 1, 'Botble\\ACL\\Models\\User', '', 'published', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `tags` VALUES (5, 'Travel', 1, 'Botble\\ACL\\Models\\User', '', 'published', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `tags` VALUES (6, 'Business', 1, 'Botble\\ACL\\Models\\User', '', 'published', '2024-12-28 04:21:17', '2024-12-28 04:21:17');
INSERT INTO `tags` VALUES (7, 'Health', 1, 'Botble\\ACL\\Models\\User', '', 'published', '2024-12-28 04:21:17', '2024-12-28 04:21:17');

-- ----------------------------
-- Table structure for tags_translations
-- ----------------------------
DROP TABLE IF EXISTS `tags_translations`;
CREATE TABLE `tags_translations`  (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tags_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  PRIMARY KEY (`lang_code`, `tags_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of tags_translations
-- ----------------------------
INSERT INTO `tags_translations` VALUES ('vi', 1, 'Chung', NULL);
INSERT INTO `tags_translations` VALUES ('vi', 2, 'Làm đẹp', NULL);
INSERT INTO `tags_translations` VALUES ('vi', 3, 'Thời trang', NULL);
INSERT INTO `tags_translations` VALUES ('vi', 4, 'Du lịch và ẩm thực', NULL);
INSERT INTO `tags_translations` VALUES ('vi', 5, 'Kinh doanh', NULL);
INSERT INTO `tags_translations` VALUES ('vi', 6, 'Sức khỏe', NULL);
INSERT INTO `tags_translations` VALUES ('vi', 7, 'Thời sự', NULL);

-- ----------------------------
-- Table structure for user_meta
-- ----------------------------
DROP TABLE IF EXISTS `user_meta`;
CREATE TABLE `user_meta`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `key` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  INDEX `user_meta_user_id_index`(`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_verified_at` timestamp(0) NULL DEFAULT NULL,
  `password` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  `first_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `last_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `username` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
  `avatar_id` bigint(20) UNSIGNED NULL DEFAULT NULL,
  `super_user` tinyint(1) NOT NULL DEFAULT 0,
  `manage_supers` tinyint(1) NOT NULL DEFAULT 0,
  `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `last_login` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE INDEX `users_email_unique`(`email`) USING BTREE,
  UNIQUE INDEX `users_username_unique`(`username`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES (1, 'Lomojay05@gmail.com', NULL, '$2y$12$rua3Z8X6J9kbRyHV08VXM.RYvTYZwiOtujCp7IvUmxMF6y3p1b8Nq', 'mu0Ug9N1ccZf6Lgluxx1l6BQcDwmIb4aAjip9ey0pMgCEYJxHs7jlbmyHZTv', '2024-12-28 04:21:13', '2025-07-30 09:28:56', 'Zoie', 'Reinger', 'admin', NULL, 1, 1, NULL, NULL);

-- ----------------------------
-- Table structure for widgets
-- ----------------------------
DROP TABLE IF EXISTS `widgets`;
CREATE TABLE `widgets`  (
  `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  `widget_id` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sidebar_id` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `theme` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `position` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
  `created_at` timestamp(0) NULL DEFAULT NULL,
  `updated_at` timestamp(0) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 31 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of widgets
-- ----------------------------
INSERT INTO `widgets` VALUES (7, 'AboutWidget', 'footer_sidebar_1', 'ultra', 1, '{\"id\":\"AboutWidget\",\"name\":\"About me\",\"description\":\"Introduction about the author of this blog. You should write because you love the shape of stories and sentences and the creation of different words on a page. Writing comes from reading, and reading is the finest teacher of how to write.\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (8, 'PopularPostsWidget', 'footer_sidebar_2', 'ultra', 1, '{\"id\":\"PopularPostsWidget\",\"name\":\"Popular Posts\",\"name_custom_class\":\"color-white\",\"number_display\":3}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (9, 'CustomMenuWidget', 'footer_sidebar_3', 'ultra', 1, '{\"id\":\"CustomMenuWidget\",\"name\":\"Quick links\",\"menu_id\":\"quick-links\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (10, 'TagsWidget', 'footer_sidebar_3', 'ultra', 1, '{\"id\":\"TagsWidget\",\"name\":\"Tags\",\"name_custom_class\":\"color-white\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (11, 'NewsletterWidget', 'footer_sidebar_4', 'ultra', 1, '{\"id\":\"NewsletterWidget\",\"name\":\"Newsletter\",\"description\":\"Subscribe to Our Newsletter\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (12, 'CopyrightFooterMenuWidget', 'footer_copyright_menu', 'ultra', 1, '{\"id\":\"CopyrightFooterMenuWidget\",\"name\":\"Copyright footer Menu\",\"menu_id\":\"quick-links\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (13, 'SocialsWidget', 'primary_sidebar', 'ultra-vi', 0, '{\"id\":\"SocialsWidget\",\"title\":\"Follow us\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (14, 'AdsWidget', 'primary_sidebar', 'ultra-vi', 0, '{\"id\":\"AdsWidget\",\"ads_location\":\"top-sidebar-ads\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (15, 'CategoriesMenuWidget', 'primary_sidebar', 'ultra-vi', 0, '{\"id\":\"CategoriesMenuWidget\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (16, 'LastestPostsWidget', 'primary_sidebar', 'ultra-vi', 0, '{\"id\":\"LastestPostsWidget\",\"name\":\"B\\u00e0i vi\\u1ebft m\\u1edbi nh\\u1ea5t\",\"number_display\":6}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (17, 'TagsWidget', 'primary_sidebar', 'ultra-vi', 1, '{\"id\":\"TagsWidget\",\"name\":\"Th\\u1ebb\",\"number_display\":10}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (18, 'AdsWidget', 'primary_sidebar', 'ultra-vi', 1, '{\"id\":\"AdsWidget\",\"ads_location\":\"bottom-sidebar-ads\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (19, 'AboutWidget', 'footer_sidebar_1', 'ultra-vi', 1, '{\"id\":\"AboutWidget\",\"name\":\"V\\u1ec1 ch\\u00fang t\\u00f4i\",\"description\":\"Introduction about the author of this blog. You should write because you love the shape of stories and sentences and the creation of different words on a page. Writing comes from reading, and reading is the finest teacher of how to write.\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (20, 'PopularPostsWidget', 'footer_sidebar_2', 'ultra-vi', 1, '{\"id\":\"PopularPostsWidget\",\"name\":\"N\\u1ed5i b\\u1eadt\",\"name_custom_class\":\"color-white\",\"number_display\":3}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (21, 'CustomMenuWidget', 'footer_sidebar_3', 'ultra-vi', 1, '{\"id\":\"CustomMenuWidget\",\"name\":\"Quick links\",\"menu_id\":\"quick-links\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (22, 'TagsWidget', 'footer_sidebar_3', 'ultra-vi', 1, '{\"id\":\"TagsWidget\",\"name\":\"Tags\",\"name_custom_class\":\"color-white\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (23, 'NewsletterWidget', 'footer_sidebar_4', 'ultra-vi', 1, '{\"id\":\"NewsletterWidget\",\"name\":\"Newsletter\",\"description\":\"Subscribe to Our Newsletter\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (24, 'CopyrightFooterMenuWidget', 'footer_copyright_menu', 'ultra-vi', 1, '{\"id\":\"CopyrightFooterMenuWidget\",\"name\":\"Copyright footer Menu\",\"menu_id\":\"quick-links\"}', '2024-12-28 04:21:23', '2024-12-28 04:21:23');
INSERT INTO `widgets` VALUES (25, 'SocialsWidget', 'primary_sidebar', 'ultra', 0, '{\"id\":\"SocialsWidget\",\"title\":\"Join us\"}', '2025-07-30 10:45:41', '2025-07-30 10:45:41');
INSERT INTO `widgets` VALUES (26, 'AdsWidget', 'primary_sidebar', 'ultra', 1, '{\"id\":\"AdsWidget\",\"ads_location\":\"top-sidebar-ads\"}', '2025-07-30 10:45:41', '2025-07-30 10:45:41');
INSERT INTO `widgets` VALUES (27, 'CategoriesMenuWidget', 'primary_sidebar', 'ultra', 2, '{\"id\":\"CategoriesMenuWidget\"}', '2025-07-30 10:45:41', '2025-07-30 10:45:41');
INSERT INTO `widgets` VALUES (28, 'LastestPostsWidget', 'primary_sidebar', 'ultra', 3, '{\"id\":\"LastestPostsWidget\",\"name\":\"Lastest Post\",\"number_display\":\"6\",\"name_custom_class\":\"\"}', '2025-07-30 10:45:41', '2025-07-30 10:45:41');
INSERT INTO `widgets` VALUES (29, 'TagsWidget', 'primary_sidebar', 'ultra', 4, '{\"id\":\"TagsWidget\",\"name\":\"Tags\",\"number_display\":\"10\",\"name_custom_class\":\"\"}', '2025-07-30 10:45:41', '2025-07-30 10:45:41');
INSERT INTO `widgets` VALUES (30, 'AdsWidget', 'primary_sidebar', 'ultra', 5, '{\"id\":\"AdsWidget\",\"ads_location\":\"bottom-sidebar-ads\"}', '2025-07-30 10:45:42', '2025-07-30 10:45:42');

SET FOREIGN_KEY_CHECKS = 1;
